jQuery(document).ready(function($){
	$("p#follow a").hover(
	function() {
		mySound = $.sound.play('http://blog/wp-content/themes/unrounded/style/sounds/crow.wav',{track:'global'});
		$("div#sidebar div#twitter").css("background-position","-244px bottom");
	},
	function() {
		$("div#sidebar div#twitter").css("background-position","25px bottom");
	}
	);
});