
	$(document).ready(function(){	
			$("#slider").easySlider({
				continuous: true,
				speed:1200,
				auto:true,
				pause:30000
				
			});
			$("#slider-2").easySlider({
				continuous: true,
				speed:1600,
				auto:true,
				pause:30000
				
			});
		});	

$(document).ready(function(){
	$("#nextBtn").click(
		function () { 
			$("#nextBtn").fadeOut(); $("#prevBtn").fadeOut(); 
			setTimeout(function() { $("#nextBtn").fadeIn(); }, 1500);
			setTimeout(function() { $("#prevBtn").fadeIn(); }, 1500)
	}
	);
	$("#prevBtn").click(
		function () { 
			$("#nextBtn").fadeOut(); $("#prevBtn").fadeOut(); 
			setTimeout(function() { $("#nextBtn").fadeIn(); }, 1500);
			setTimeout(function() { $("#prevBtn").fadeIn(); }, 1500)
	}
	);
});	