// Returns values of selected wallpapers, and social media links. For use with GA
$(document).ready(function() {
	//Menu - 'menu','menu2','buttons','carousel'.
	$('ul#nav-main > li > a, a.btn-purchase').mouseover(function(event) {
		$('#sound-target')[0].playSound('menu');
	});
	$('ul#nav-main li ul li a, ul#nav-sub li a').mouseover(function(event) { 
		$('#sound-target')[0].playSound('menu2');
	});
	$('.fun-stuff a.btn-red, .link-list a.btn-red').mouseover(function(event) { 
		$('#sound-target')[0].playSound('buttons');
	});
	$('ul.nav-panels-arrows li button').click(function(event) { 
		$('#sound-target')[0].playSound('carousel');
	});
});
