$(document).ready(function(){
	$("#corpsSlideshow").easySlider({
		auto: true,
		continuous: true,
		pause: 4000,
		speed: 1500,
		controlsShow: true
	});
	


$("#corpsSlideshowContainer").hover(
		function() {
			$("#corpsSlideshowContainer span").fadeIn(100);
		},
		function() {
			$("#corpsSlideshowContainer span").fadeOut(100);
		}
	);
	
});
