// Appel des fonctions 

$(document).ready(function() {

	// ColorBox 

	$(".gallery a").colorbox({rel:'gallery', slideshow:true});
	$("a.colorbox").colorbox({slideshow:true});
	$("a.bt-guestbook").colorbox({transition:"elastic", width:"920px", height:"540px", iframe:true});

	// Affichage des sous menus

	$('.allInactive #navList01').hide();
	$('.allInactive #navList02').hide();
	$('.navList01Inactive #navList01').hide();
	$('.navList02Inactive #navList02').hide();

	$('#navList01Toggle').click(function() {
		$('#navList01').slideToggle(300);
		$('#navList02').hide();
		return false;
	});
	
	$('#navList02Toggle').click(function() {
		$('#navList02').slideToggle(300);
		$('#navList01').hide();
		return false;
	});

	// Transition navigation entre les pages

	$("body").css("display", "none");
	$("body").fadeIn(1000);
//	$("#header a").click(function(event){
//		event.preventDefault();
//		linkLocation = this.href;
//		$("body").fadeOut(1000, redirectPage);
//	});
//	function redirectPage() {
//		window.location = linkLocation;
//	}

});

