$(document).ready(function(){

	$(".nav li").not('.here')
		.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -47px)"}, 
				{duration:300})
			})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 0)"}, 
				{duration:300})
			})
 
	$(".nav li.here")
		.mouseover(function(){
			$(this).stop().delay(800).animate(
				{backgroundPosition:"(0 0)"}, 
				{duration:300})
			})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -47px)"}, 
				{duration:300})
		})			

});
