/* ******************************

	bg-anima.js
	
******************************* */

$(function(){
		
	$('#station-topnav ul a')
		.css( {backgroundPosition: "-1260px 0"} )
		.mouseover(function(){
			$(this).find("span").css({backgroundPosition:"left bottom"});
			$(this).stop().animate({backgroundPosition:"(-630px 0)"}, {duration:600});
			
		})
		.mouseout(function(){
			$(this).find("span").css({backgroundPosition:"left top"});
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:600, complete:function(){
				$(this).css({backgroundPosition: "-1260px 0"});
			}})
		})
	
});
