/* slideshow home page */

	var  carrousel;
function dispArrows(car) {

}

jQuery(document).ready(function () {
	/* pour transparence png IE 6 */
	jQuery(document).pngFix();
});

jQuery(window).load(function () {	
	carrousel = jQuery("#slideshow > ul:first").moodular({
		speed 		: 2000,
		dispTimeout 	: 22000,
		auto		: true,
		api		: true,
		continuous	: true,
		callbacks	: [dispArrows],
		startOn : 0		
	});
	
		
	jQuery('#next').click(function () { 
		carrousel.next(); 
		return false;
	});
	jQuery('#prev').click(function () { 
		carrousel.prev();
		return false;
	});
});
