function over(event) {
	$("#nextBtn").css("display", "block");
	$("#prevBtn").css("display", "block");	
}
function out(event) {
	$("#nextBtn").css("display", "none");
	$("#prevBtn").css("display", "none");
}
function over2(event) {
	$("#nextBtn2").css("display", "block");
	$("#prevBtn2").css("display", "block");	
}
function out2(event) {
	$("#nextBtn2").css("display", "none");
	$("#prevBtn2").css("display", "none");
}
$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true,
		controlsShow: true,
		pause: 10000,
		continuous: true 
	});
	$("#slider-pics").easySlider({
		prevId: 'prevBtn2',
		nextId: 'nextBtn2',	
		auto: false,
		controlsShow: true,
		pause: 3000,
		continuous: true 
	});
	
	$("#slider-sidebox").hover(over, out);
	$("#regulars-images").hover(over2, out2);
});
