// JavaScript Document

$(function(){
	
	$('#b a')
		.css( {backgroundPosition: "-600px bottom"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-150px bottom)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(100px bottom)"}, {duration:300, complete:function(){
				$(this).css({backgroundPosition: "-600px bottom"})
			}})
		})
	
});
