$(function(){
	
	$('#d a')
			.css( {backgroundPosition: "0 0"} )
			.mouseover(function(){
				$(this).stop().animate({backgroundPosition:"(0 -80px)"}, {duration:250})
			})
			.mouseout(function(){
				$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:250})
			})
	
});


/*
function logoAnim() {
	
//		   alert("over");
		   //$(this).css( {backgroundPosition: "0 0"} );
		   $("#logo").animate({backgroundPosition: '0 250px'});
		   
		   //$(this).stop().animate({backgroundPosition:"(-150px 0)"}, {duration:500});	

}

function logoAnimOut() {
	
//			alert("out");
			$("#logo").animate({backgroundPosition: '0 -150px'});
}

*/
