$(function() {

});

$(document).ready( function() {

	/**
	 * Mise en place d'un bandeau d'introduction
	 * jQuery Apple Effect
	 *
	 */
	if ( $("#ensembleBandeauIntroSite").length > 0 ) {
		$("#ensembleBandeauIntroSite").appleEffect({
			color: '#FFF',
			timeout: 4000,
			speed: 1000,
			callback: function() {
			$("#ensembleBandeauIntroSite").css("display", "none");
		}
		});
	}
	
	/** ScrollPane pour listing des résultats GoogleMaps */
		$('#blocCentral').jScrollPane();

	/**
	 * GESTION DES GALERIES D'IMAGES
	 *
	 */
	$("a.kGalerie").colorbox({
		transition:"fade",
		maxWidth:"100%",
		maxHeight:"100%"
	});

	/**
	 * GESTION DU BANDEAU D'EN-TETE
	 * DIAPORAMA D'IMAGES SE SUCCEDANT
	 *
	 */
	$("div[name=kDiaporama]").slideshow({
		timeout: 3000
	});

});

