// JavaScript Document
$(document).ready(function() {
	$('.dispos').colorbox({width:"750px", height:"550px", iframe:true});	
  	$('.onglets').click(function() {							
		wichLink = $(this).children('a');
		window.location.href=(wichLink.attr("href"));
	});
  	$('#footer .footerButton').click(function() {							
		wichLink = $(this).children('a');
		window.location.href=(wichLink.attr("href"));
	});
    $('#photoAccueil').cycle({
		fx: 'fade',
		timeout: 4000
	});
    $('#slideshowZone').cycle({
		fx: 'fade',
		timeout: 8000,
		next:   '#nextImg', 
    	prev:   '#previousImg'
	});
    $('#promoZone').cycle({
		fx: 'fade',
		timeout: 4000,
		next:   '#nextImg', 
    	prev:   '#previousImg'
	});
});


// -->
