$(document).ready(function() {
							// do stuff when DOM is ready
	$('a.button')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-105px 0)"}, {duration:300 })
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(-190px 0)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "0 0"})
			}})
		})



 });
