var $j = jQuery.noConflict();

$j(function(){
	/*JE CACHE LE TITRE ENTRY-TITLE*/
	$j('.entry-title').hide();
	$j('#nav').before("<div class='headerTop'><div class='logoTop'><img src='http://lasittelle.wp.dev.id-3.net/wp-content/themes/lifestyle/images/LaSittelle/logo.png' width='174px' height='84px'/></div></div>");
	$j('.mapp-container').attr("style","width:300px; float:left; margin-top:40px; margin-bottom:40px;");
	$j('.mapp-canvas-panel').attr("style","width:300px; margin-top:40px; margin-bottom:40px; height:300px; border: 1px solid #000000;  border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -o-border-radius:2px;");
	$j('.gototop').hide();
	$j('.creds').hide();
	$j('#lienCarre2').hide();
	$j('#lienCarre3').hide();
	$j('#lienCarre4').hide();
	
	$j('.lienPiece').click(function(){
		$j('#lienCarre2').hide();
		$j('#lienCarre4').hide();
		$j('#lienCarre3').hide();
		$j('#lienCarre').show();
	});
	
	$j('.lienPiece2').click(function(){
		$j('#lienCarre').hide();
		$j('#lienCarre3').hide();
		$j('#lienCarre2').show();
		$j('#lienCarre4').hide();
	});
	
	$j('.lienPiece3').click(function(){
		$j('#lienCarre').hide();
		$j('#lienCarre2').hide();
		$j('#lienCarre3').show();
		$j('#lienCarre4').hide();
	});
	
	$j('.lienPiece4').click(function(){
		$j('#lienCarre').hide();
		$j('#lienCarre2').hide();
		$j('#lienCarre3').hide();
		$j('#lienCarre4').show();
	});
	
	/*Animation de la banniere porte ouverte*/
	function fadeIn() {
  			$j("#animeBanner").animate({opacity:0},2000);
			$j("#banniereGlow").animate({"top": "225px"}, 2000);
			$j("#banniereGlow").fadeOut(1000);
			
					   
  			setTimeout(fadeOut,2500);
		}

		function fadeOut() {
  			$j("#animeBanner").animate({opacity:1},2000);
			$j("#banniereGlow").animate({"top": "-50px"}, 6000);
			$j("#banniereGlow").fadeIn(1000);
  			setTimeout(fadeIn,2500);
		}

		function startAnim() {
		  setTimeout(fadeIn,1000);
		}
		startAnim();
	
	/*CONDITIONS POUR LES BOUTONS DU NAVIGATEUR ACTIVER*/
	var pathname = window.location.pathname;
	
	/*SECTION PLAN*/
	if(pathname == "/plan/"){
		$j('a:contains("Plan")').css("background-color","#d7ede6");
		$j("#footer").css("margin-top","-30px");
	};
	
	if(pathname == "/en/plan-2/"){
		$j('a:contains("Plan")').css("background-color","#d7ede6");
		$j("#footer").css("margin-top","-30px");
	};
	
	/*SECTION CONTACT*/
	if(pathname == "/contact/"){
		$j('a:contains("Contact")').css("background-color","#d7ede6");
	};
	
	if(pathname == "/en/contact-us/"){
		$j('a:contains("Contact us")').css("background-color","#d7ede6");
	};
	
	/*SECTION PHOTOS*/
	if(pathname == "/photos/"){
		$j('a:contains("Photos")').css("background-color","#d7ede6");
	};
	
	if(pathname == "/en/pictures/"){
		$j('a:contains("Pictures")').css("background-color","#d7ede6");
	};
	
	/*SECTION COMPLEXE*/
	if(pathname == "/complexe/"){
		$j('a:contains("Complexe")').css("background-color","#d7ede6");
	};
	
	if(pathname == "/en/complexe-2/"){
		$j('a:contains("Complexe")').css("background-color","#d7ede6");
	};
	
	/*SECTION ACCUEIL*/
	if(pathname == "/accueil/"){
		$j('a:contains("Accueil")').css("background-color","#d7ede6");
	};
	
	if(pathname == "/accueil"){
		$j('a:contains("Accueil")').css("background-color","#d7ede6");
	};
	
	if(pathname == "/en/home/"){
		$j('a:contains("Home")').css("background-color","#d7ede6");
	};
	
	/*------------------------------------------------------*/
	
	/*Lorsquon click sur les bouttons de la section plan*/
	$j('.lienPiece,.lienPiece2,.lienPiece3,.lienPiece4').click(function(){
		$j('#photoPlan').hide();
		var lePlan = this.id;
		$j('#photoPlan').attr("src",("http://lasittelle.wp.dev.id-3.net/wp-content/themes/lifestyle/images/LaSittelle/"+lePlan+".gif"));
		$j('#photoPlan').fadeIn("slow");
	});
});
