var tabCadreResize = new Array(new Array('cadre_15',30,184));


window.addEvent('domready', function() {
	resizeCadre();
	resizehautCadre();
	resizeHCadre();
	resizeChambre();
	if($('cadre_20') != null)
		resizePageAcueil();
	if($('cadre_23') != null)
		resizeService();	
	if($('cadre_21') != null)
		resizeEspritLieux();
	if($('cadre_16') != null)
		resizeEquipement();
	if($('cadre_26') != null)
		resizeSenlis();
	if($('cadre_10') !=null)
		resizePhotoContact();
	if($('cadre_27') != null)	
		resizeAfaire();
});

window.addEvent('resize', function() {
	resizeCadre();
	resizehautCadre();
	resizeHCadre();	
	resizeChambre();
	if($('cadre_20') != null)
		resizePageAcueil();
	if($('cadre_23') != null)
		resizeService();	
	if($('cadre_21') != null)
		resizeEspritLieux();
	if($('cadre_16') != null)
		resizeEquipement();
	if($('cadre_26') != null)
		resizeSenlis();
	if($('cadre_10') !=null)
		resizePhotoContact();
	if($('cadre_27') != null)	
		resizeAfaire();	
});


// fx de redimentionnement des cadres de texte.
function resizeCadre(){
	for(var i in tabCadreResize){
		if($(tabCadreResize[i][0]) != null){ // si le cadre existe
			var hPage = $('globalCadres').offsetHeight; //la taille du logo est de 160px, il faut 170px pour le menu + un marge de 30px
			$(tabCadreResize[i][0]).style.height = hPage - tabCadreResize[i][1] - tabCadreResize[i][2] +'px'; 
			if($(tabCadreResize[i][0]+'_fond') != null) // s'il y a un cadre de fond
				$(tabCadreResize[i][0]+'_fond').style.height = $(tabCadreResize[i][0]).style.height;
		}	
	}
}
//new Array('cadre_22',170,200)
function resizeChambre(){
	var te = new Array( new Array('cadre_22',370,170),new Array('cadre_13',430,70));
	for(var i in te){
		if($(te[i][0]) !=null){
			var hPage = $('globalCadres').offsetHeight; 
			var hTmp = hPage - te[i][2] - 200 ;
			if(hTmp > te[i][1])
				$(te[i][0]).style.height = te[i][1]+"px";
			else
				$(te[i][0]).style.height = hTmp+'px';
			if($(te[i][0]+'_fond') != null) // s'il y a un cadre de fond
				$(te[i][0]+'_fond').style.height = $(te[i][0]).style.height;
		}
	}
}

function resizeService(){
	var hPage = $('globalCadres').offsetHeight;
	var tmp = hPage - $('cadre_23').offsetHeight -200;
	if(tmp < 100 ){
		$('cadre_23').style.top = tmp+'px';;
		if($('cadre_23_fond') != null)
			$('cadre_23_fond').style.top = tmp+'px';;
	}else{
		$('cadre_23').style.top = '100px';
		if($('cadre_23_fond') != null)
			$('cadre_23_fond').style.top = '100px';
	}
}
	//histoire
function resizeHCadre(){   // id, top,max width, max height
	var te = new Array(new Array('cadre_14',20,860,527),new Array('cadre_29',190,950,350));
	for(var i in te){
		if($(te[i][0]) != null){
			var hCadre = ($('globalCadres').offsetHeight - 200 - $(te[i][0]).offsetTop) ;
			if(hCadre > te[i][3]){
				hCadre = te[i][3];
			}
			$(te[i][0]).style.height = hCadre+'px';
			if($(te[i][0]+'_fond') != null)
				$(te[i][0]+'_fond').style.height =hCadre+'px';

			// on change le width
			if($(te[i][0]).offsetWidth > ($('globalCadres').offsetWidth - te[i][1] - 215)){
				$(te[i][0]).style.width = ($('globalCadres').offsetWidth - te[i][1] - 215) +"px";
				if($(te[i][0]+'_fond') != null)
					$(te[i][0]+'_fond').style.width = ($('globalCadres').offsetWidth - te[i][1] - 215) +"px";
			}else{
				$(te[i][0]).style.width = te[i][2]+'px';
				if($(te[i][0]+'_fond') != null)
					$(te[i][0]+'_fond').style.width = te[i][2]+'px';
			}
		}
	}
}

function resizeEspritLieux(){
	var lPage = $('globalCadres').offsetWidth;
	var hPage = $('globalCadres').offsetHeight;
	if($('cadre_21').offsetLeft  < 215){
		//alert(lPage - 215 - (lPage - ($('cadre_21').offsetLeft + $('cadre_21').offsetWidth)));
		$('cadre_21').style.width = (lPage - 215 - (lPage - ($('cadre_21').offsetLeft + $('cadre_21').offsetWidth)))+'px';
		if($('cadre_21_fond') != null)
			$('cadre_21_fond').style.width = $('cadre_21').style.width;
	}else{
		var t = lPage - 215 - (lPage - ($('cadre_21').offsetLeft + $('cadre_21').offsetWidth));
		if(t > 750){
			$('cadre_21').style.width="750px";
			if($('cadre_21_fond') != null)
				$('cadre_21_fond').style.width="750px";
		}else{
			$('cadre_21').style.width = t+'px';
			if($('cadre_21_fond') != null)
				$('cadre_21_fond').style.width = t+'px';
		}
	}
	
	// pour la hauteur
	var h = hPage - 210 - $('cadre_21').offsetHeight;
	if(h > 370 ){
		$('cadre_21').style.top = "370px";
		if($('cadre_21_fond') != null)
			$('cadre_21_fond').style.top = "370px";
	}else{
		$('cadre_21').style.top = h+"px";
		if($('cadre_21_fond') != null)
			$('cadre_21_fond').style.top = h+'px';
	}
	
}
// menus & carte
function resizehautCadre(){ // id , h menu, top, hmaxElm
	tmp = new Array(new Array('cadre_19',220,50,330),new Array('cadre_28',220,0,170),new Array('cadre_8',200,60,550));
	var hPage = $('globalCadres').offsetHeight;
	for(var i in tmp){
		if($(tmp[i][0]) != null){
			var t = hPage - tmp[i][1] - tmp[i][2];
			if(t > tmp[i][3]){
				$(tmp[i][0]).style.height = tmp[i][3]+'px';
				if($(tmp[i][0]+'_fond') != null)
					$(tmp[i][0]+'_fond').style.height = tmp[i][3]+'px';
			}else{
				$(tmp[i][0]).style.height = t+'px';
				if($(tmp[i][0]+'_fond') != null)
					$(tmp[i][0]+'_fond').style.height = t+'px';
			}
		}
	}
}


function resizeEquipement(){
// pour le titre
	var lPage = $('globalCadres').offsetWidth;
	var hPage = $('globalCadres').offsetHeight;
	if((lPage - $('cadre_16').offsetWidth)/2 < 215){
		$('cadre_16').style.left = '215px';
		$('cadre_16').style.marginLeft = '0px';
		if($('cadre_16_fond') != null){
			$('cadre_16_fond').style.left = "215px";
			$('cadre_16_fond').style.marginLeft = "0px";
		}
	}else{
		$('cadre_16').style.left = '50%';
		$('cadre_16').style.marginLeft = "-335px";
		if($('cadre_16_fond') != null){
			$('cadre_16_fond').style.left = "50%";
			$('cadre_16_fond').style.marginLeft = "-335px";
		}
	}

// pour le cadre de blabla
	if(lPage < 1319){
		$('cadre_8').style.left ="215px";
		$('cadre_8').style.marginLeft = "0px"
		if($('cadre_8_fond') !=null){
			$('cadre_8_fond').style.left = "215px";
			$('cadre_8_fond').style.marginLeft = "0px";
		}
	}else{
		$('cadre_8').style.left ="50%";
		$('cadre_8').style.marginLeft ="-445px";
		if($('cadre_8_fond') !=null){
			$('cadre_8_fond').style.left = "50%";
			$('cadre_8_fond').style.marginLeft = "-445px";
		}
	}
	//pour la hauteur du cadre c'est dans resizehautCadre()
	
	// pour la premiére img
	
	$('cadre_cont_8').children[0].style.height = 'auto';
		$('cadre_cont_8').children[0].style.width = '100%';
		$('cadre_cont_8').style.height = 'auto';
		$('cadre_cont_8').style.width = '100%';
		
		
		$('cadre_cont_10').children[0].style.height = 'auto';
		$('cadre_cont_10').children[0].style.width = '100%';
		$('cadre_cont_10').style.height = 'auto';
		$('cadre_cont_10').style.width = "100%";
	var largImg = lPage - $('cadre_8').offsetLeft - $('cadre_8').offsetWidth;
	$('cadre_7').style.width = largImg - 45+'px';
	$('cadre_7').style.height = $('cadre_7').children[0].offsetHeight+'px';
	// pour la 2°
	$('cadre_9').style.top = $('cadre_7').offsetTop + $('cadre_7').offsetHeight+'px';  
	$('cadre_9').style.width = largImg - 65+'px';
	$('cadre_9').style.height = $('cadre_9').children[0].offsetHeight+'px';
	
	// test pour pas que cela chevauche le menu en 16:9 (ex:1366x768)
	if(hPage - 220 - $('cadre_7').offsetTop < $('cadre_7').offsetHeight + $('cadre_9').offsetHeight){
		var hImg = (hPage - 200 - $('cadre_7').offsetTop)/2;
		$('cadre_cont_8').children[0].style.height = hImg+'px';
		$('cadre_cont_8').children[0].style.width = 'auto';
		$('cadre_cont_8').style.height = hImg+'px';
		$('cadre_cont_8').style.width = "auto";
		$('cadre_7').style.height = hImg+'px';
		
		$('cadre_cont_10').children[0].style.height = hImg+'px';
		$('cadre_cont_10').children[0].style.width = 'auto';
		$('cadre_cont_10').style.height = hImg+'px';
		$('cadre_cont_10').style.width = "auto";
		$('cadre_9').style.height = hImg+'px';
		$('cadre_9').style.top =  $('cadre_7').offsetTop + $('cadre_7').offsetHeight+'px';
	}/*else{
		$('cadre_cont_8').children[0].style.height = 'auto';
		$('cadre_cont_8').children[0].style.width = '100%';
		$('cadre_cont_8').style.height = 'auto';
		$('cadre_cont_8').style.width = '100%';
		
		
		$('cadre_cont_10').children[0].style.height = 'auto';
		$('cadre_cont_10').children[0].style.width = '100%';
		$('cadre_cont_10').style.height = 'auto';
		$('cadre_cont_10').style.width = "100%";
	}*/
	
	
}

function resizeSenlis(){
//'cadre_26',280
	var hPage = $('globalCadres').offsetHeight;	
	var t = hPage - $('cadre_26').offsetHeight - 200;
	if(t > 230){
		$('cadre_26').style.top = '230px';
		if($('cadre_26_fond') != null)
			$('cadre_26_fond').style.top = "230px";
	}else{
		$('cadre_26').style.top = t+'px';
		if($('cadre_26_fond') != null)
			$('cadre_26_fond').style.top = t+'px';
	}
}

function resizePhotoContact(){
	var lPage = $('globalCadres').offsetWidth;
	var hPage = $('globalCadres').offsetHeight;
	var t = lPage - $('cadre_10').offsetLeft - 20;
	$('cadre_cont_12').children[0].style.height = "auto";
	$('cadre_cont_12').children[0].style.width = "100%";
	$('cadre_cont_12').style.height = $('cadre_cont_12').children[0].offsetHeight+'px';
	$('cadre_cont_12').style.width = "100%";
	if(t > 740){
		$('cadre_10').style.width = '740px';
		$('cadre_10').style.height = $('cadre_10').children[0].offsetHeight+'px';
		if($('cadre_10_fond') != null){
			$('cadre_10_fond').style.width = '740px';
			$('cadre_10_fond').style.height = $('cadre_10').children[0].offsetHeight+'px';
		}
	}else{
		$('cadre_10').style.width = t+'px';
		$('cadre_10').style.height = $('cadre_10').children[0].offsetHeight+'px';
		if($('cadre_10_fond') != null){
			$('cadre_10_fond').style.width = t+'px';
			$('cadre_10_fond').style.height = $('cadre_10').children[0].offsetHeight+'px';
		}
	}
	// pour empécher l'img de chevaucher le menu en 16:9
	if(hPage -220 - $('cadre_10').offsetTop < $('cadre_10').offsetHeight){
		var hImg = hPage -220 - $('cadre_10').offsetTop;
		$('cadre_cont_12').children[0].style.height = hImg+"px";
		$('cadre_cont_12').children[0].style.width = "auto";
		$('cadre_cont_12').style.height = hImg+'px';
		$('cadre_cont_12').style.width = $('cadre_cont_12').children[0].offsetWidth+'px';
		$('cadre_10').style.height = hImg+'px';
		$('cadre_10').style.width = $('cadre_cont_12').offsetWidth+'px';
	}
	
	// on test si l'img sort de sont cadre
	if($('cadre_cont_12').offsetHeight < $('cadre_cont_12').children[0].offsetHeight){
		// cas ou l'image a un heigh trop grand
		$('cadre_cont_12').children[0].style.height = $('cadre_cont_12').offsetHeight+'px';
		$('cadre_cont_12').children[0].style.width = "auto";
	}
	if($('cadre_cont_12').offsetHeight > $('cadre_cont_12').children[0].offsetHeight){
		// cas ou l'image a un heigh trop grand
		$('cadre_cont_12').style.height = $('cadre_cont_12').children[0].offsetHeight+'px';
		$('cadre_10').style.height = $('cadre_cont_12').offsetHeight+'px';
		$('cadre_cont_12').style.width = "100%";
	}
}


function resizeAfaire(){
	var lPage = $('globalCadres').offsetWidth;
	$('cadre_27').style.left = "50%";
	$('cadre_27').style.marginLeft = "-584px";
	$('cadre_27').style.width = "1170px";
	if(lPage - $('cadre_27').offsetWidth - $('cadre_27').offsetLeft < 215){ // 215 -> large logo
		$('cadre_27').style.left = "215px";
		$('cadre_27').style.marginLeft = "0px";
		if($('cadre_27_fond') != null){
			$('cadre_27_fond').style.left = "215px";
			$('cadre_27_fond').style.marginLeft = "0px";
		}
	}else{
		$('cadre_27').style.left = "50%";
		$('cadre_27').style.marginLeft = "-584px";
		if($('cadre_27_fond') != null){
			$('cadre_27_fond').style.left = "50%";
			$('cadre_27_fond').style.marginLeft = "-584px";
		}
	}
	//pour le width
	if($('cadre_27').style.left == '50%'){
		var t =lPage - $('cadre_27').offsetLeft *2;
		if( t > 1170){
			$('cadre_27').style.width = "1170px";
			if($('cadre_27_fond') != null)
				$('cadre_27_fond').style.width = "1170px";
		}else{
			$('cadre_27').style.width = t+"px";
			if($('cadre_27_fond') != null)
				$('cadre_27_fond').style.width = t+"px";
		}
	}else{
		var t =lPage - $('cadre_27').offsetLeft - 20;
		if( t > 1170){
			$('cadre_27').style.width = "1170px";
			if($('cadre_27_fond') != null)
				$('cadre_27_fond').style.width = "1170px";
		}else{
			$('cadre_27').style.width = t+"px";
			if($('cadre_27_fond') != null)
				$('cadre_27_fond').style.width = t+"px";
		}
	}
}


function resizePageAcueil(){
//	var elm = $('cadre_20');
	var hPage = $('globalCadres').offsetHeight;
	var lPage = $('globalCadres').offsetWidth;
	var part = (hPage-$('cadre_20').offsetHeight)/3;

	if(2*part > 200){
		$('cadre_20').style.top = part+'px';
		if($('cadre_20_fond') != null)
			$('cadre_20_fond').style.top = part+'px';
	}else{
		$('cadre_20').style.top = '51px';
		if($('cadre_20_fond') != null)
			$('cadre_20_fond').style.top = '51px';
	}
	//pour la largeur
	if((lPage -$('cadre_20').offsetWidth) /2 < 250){
		$('cadre_20').style.left = "250px";
		$('cadre_20').style.marginLeft = "0px";
		if($('cadre_20_fond') != null){
			$('cadre_20_fond').style.left = "250px";
			$('cadre_20_fond').style.marginLeft = "0px";
		}
	}else{
		$('cadre_20').style.marginLeft = "-380px";
		$('cadre_20').style.left = "50%";
		if($('cadre_20_fond') != null){
			$('cadre_20_fond').style.marginLeft = "-380px";
			$('cadre_20_fond').style.left = "50%";
		}
	}
}

function afficheSMenu(elm){
	elm.children[1].style.display= 'block';
	//.setHoverPermsFils(elm);
}

function cacheSMenu(elm){
	elm.children[1].style.display= 'none';
	//desetHoverPermsFils(elm);
}

function setHoverPermsFils(elm){
	elm.parentNode.parentNode.children[1].children[0].children[0].style.color = "black";
}
function desetHoverPermsFils(elm){
	elm.parentNode.parentNode.children[1].children[0].children[0].style.color = "";
}

function setHoverParent(elm){
	elm.parentNode.parentNode.parentNode.children[0].children[0].style.color = "black";
}
function desetHoverParent(elm){
	elm.parentNode.parentNode.parentNode.children[0].children[0].style.color = "";
}

function cacheTexte(id){
	var tabCadre = new Array('cadre_36','cadre_37','cadre_39','cadre_41','cadre_67','cadre_43','cadre_70','cadre_44',
							'cadre_45','cadre_46','cadre_48','cadre_49','cadre_50','cadre_72','cadre_65',
							'cadre_74','cadre_40','cadre_47','cadre_69','cadre_52','cadre_51','cadre_58','cadre_66','cadre_59','cadre_56');
	for(var i in tabCadre){
		if($(tabCadre[i]) != null){
			if($(tabCadre[i]).style.display != 'none'){
				$(tabCadre[i]).style.display = 'none'
				if($(tabCadre[i]+'_fond') != null)
					$(tabCadre[i]+'_fond').style.display = 'none';
				$('cacheTxt').innerHTML = '&nbsp; Afficher le texte &nbsp;';
			}else{
				$(tabCadre[i]).style.display = 'block';
				if($(tabCadre[i]+'_fond') != null)
					$(tabCadre[i]+'_fond').style.display = 'block';
				$('cacheTxt').innerHTML = '&nbsp; Cacher le texte &nbsp;';
			}
		}
	}
}

