$(document).ready( function() {

	$('#Menu ul li a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -250px)",color:"#fff"}, {duration:400});
		})
		.mouseout(function(){
			if ($(this).parent().hasClass('on')) {
				$(this).stop().animate({backgroundPosition:"(0 0)",color:"#444"}, {duration:400});
			} else {
				$(this).stop().animate({backgroundPosition:"(0 0)",color:"#fff"}, {duration:400});
			}
		})
	
		/*$('#Menu ul li a span').hover(function() {
			$(this).animate({foregroundColor: "#666666",textAlign: "100%"}, 400);
		}, function() {
			$(this).animate({foregroundColor: "#ffffff",textAlign: "0%"}, 400);
		});*/
});
