$(document).bind('ready',function () { 

$("#slider").easySlider({
				auto: true,
				continuous: true,
				speed: 800,
				pause: 10000,
			});
$('#nextBtn').find('a').css('opacity',0.5);
$('#prevBtn').find('a').css('opacity',0.5);
$('#nextBtn').hover(function(){$(this).find('a').css('opacity',1)},function(){$(this).find('a').css('opacity',0.5)});
$('#prevBtn').hover(function(){$(this).find('a').css('opacity',1)},function(){$(this).find('a').css('opacity',0.5)});

});


