$(document).ready(function(){
	
	//For each instance of .client_module
	$(".client_module").each(function(){
		
		//Fade's in the modules
		$(this).animate({ opacity: 1 }, 1000);
		
	})//each
	
	//Init The Slideshow
	$('.detail_images').cycle({
		fx:      'fade', 
		speed:    1000, 
		timeout:  2000
	});
	
});//ready

