/*
 *	$ Innerfade
 *  Paramètrage des données.
*/


/* Application Showcase */
	
	$(document).ready(function(){  	
		$('#slider').innerfade({
				animationtype: 'fade', 
				speed: '3000',
				timeout: 7000,
				type: 'sequence',
				containerheight: 'auto'
		});	
});

/* Client Testimonials */
	
	$(document).ready(function(){  	
		$('#slider2').innerfade({
				animationtype: 'fade', 
				speed: '3000',
				timeout: 5000,
				type: 'sequence',
				containerheight: 'auto'
		});	
});

/* Screenshots */
	
	$(document).ready(function(){ 
		$('.boxgrid.captionfull').hover(function(){ //au passage de la souris
			$(".cover", this).fadeIn("fast");
		}, 
		function() { //On hover out...
			$(".cover", this).fadeOut("fast");
		});

});

/* Table Style */
	
	$(document).ready(function(){  	
		$("#table-a tr:odd").addClass("alt");	
	});
	
/* Lightbox */
	
    $(document).ready(function(){
        $('.boxgrid a').lightBox();
    });
