$(document).ready(function(){ 

		$("#slider").easySlider({
		auto: true,
		continuous: true 
		});
		
		$(".infoforlinklist a")
			.css( {backgroundPosition: "536 0"} )
			.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(1610 0)"}, 
				{duration:300})
			})
			.mouseout(function(){
				$(this).stop().animate(
				{backgroundPosition:"(536 0)"}, 
				{duration:500})
			})			
		
    }); 
