	$(document).ready(function () {
		$('#menu img').hover(function () {
			$(this).attr("off", $(this).attr("src"));
			$(this).attr("src", $(this).attr("hover"));	
		}, function () {
			var str = $(this).attr("off");
			if (str != "")
				$(this).attr("src", str);
			//$(this).attr("src", $(this).attr("hover"));
		});
		$('#menu a').css( {backgroundPosition: "0px 0px"} ).mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-80px -190px)"}, {duration:1000})
		}).mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(-130px 0px)"}, {duration:700, complete:function(){
				$(this).css({backgroundPosition: "0px 0px"})
			}})
		});

		
	});
