
		
		jQuery(function(){
	jQuery('.navigation li a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			jQuery(this).stop().animate({backgroundPosition:"(-250px 0)"}, {duration:400})
		})
		.mouseout(function(){
			jQuery(this).stop().animate({backgroundPosition:"(-300px 0)"}, {duration:200, complete:function(){
				jQuery(this).css({backgroundPosition: "0 0"})
			}})
		})
});
