	$(document).ready(function(){
		//CODE
		$('a#goHome')
			.css( {backgroundPosition: "0 0"} )
			.mouseover(function(){
				$(this).stop().animate(
				{backgroundPosition:"0 -22px"},150)
			})
			.mouseout(function(){
				$(this).stop().animate(
				{backgroundPosition:"0 0"},150)
			})
	});