

jQuery(document).ready(function(){
	initRubs();
});

/* ------------------------ EVENEMENTS ------------------------ */


/* ------------------------ FONCTIONS ------------------------ */

function initRubs(){
	jQuery("#rub_form_contact").bind("click", showThisRub);
	jQuery("#rub_trouver_conseiller").bind("click", showThisRub);
	jQuery("#rub_contactez_nous").bind("click", showThisRub);
	jQuery("#rub_trouver_conseiller").find(".arrow_blue").hide();
	jQuery("#rub_trouver_conseiller").find(".arrow_blue_down_contact").show();	jQuery("#rub_trouver_conseiller_close").show();
}


function showThisRub(){	
	// On recupere l'id de cette rubrique
	curId = this.id;
	
	// On change le chevron
	jQuery("#"+curId).find(".arrow_blue").hide();
	jQuery("#"+curId).find(".arrow_blue_down_contact").show();
	
	// On affiche la rubrique close de l'element
	if(jQuery("#"+curId+"_close").css("display") == "none" ){
		jQuery("#"+curId+"_close").show();
	}
	else{
		jQuery("#"+curId+"_close").hide();

		jQuery("#"+curId).find(".arrow_blue").show();
		jQuery("#"+curId).find(".arrow_blue_down_contact").hide();
	}
	
	// On resize le content et la sidebar
	resizeHeightContentAndSidebar();
}

