
window.addEvent('domready', function() {
	if($('cadre_65') != null)
		resizeResto();
	if($('cadre_61') != null)
		resizeChambre();
});

window.addEvent('resize', function() {
	if($('cadre_65') != null)
		resizeResto();
	if($('cadre_61') != null)
		resizeChambre();
});


// fx de redimentionnement des cadres de texte.
function resizeResto(){
	var taille = getTailleEcran();
	rest = taille[0] - 730;
	ph1 = Math.round((rest - 120) / 3);
	ph2 = ph1 * 2;
	
	$('cadre_66').style.left = '220px';
	tmp = $('cadre_cont_79').childNodes;
	for(i=0; i<tmp.length; i++){
		if(tmp[i].nodeName == 'IMG'){
			tmp[i].style.width = ph1+'px';
			tmp[i].style.height = 'auto';
			break;
		}
	}
	
	l2 = ph1+260;
	$('cadre_65').style.left = l2+'px';
	tmp = $('cadre_cont_78').childNodes;
	for(i=0; i<tmp.length; i++){
		if(tmp[i].nodeName == 'IMG'){
			tmp[i].style.width = ph2+'px';
			tmp[i].style.height = 'auto';
			break;
		}
	}
	
}

function resizeChambre(){
	var taille = getTailleEcran();
	rest = taille[0] - 760;
	
	p1 = Math.round(rest*0.45);
	e1 = 220 + p1 + Math.round(rest*0.2);
	p2 = Math.round(rest*0.25);
	
	$('cadre_64').style.left = '220px';
	tmp = $('cadre_cont_74').childNodes;
	for(i=0; i<tmp.length; i++){
		if(tmp[i].nodeName == 'IMG'){
			tmp[i].style.width = p1+'px';
			tmp[i].style.height = 'auto';
			break;
		}
	}
	
	$('cadre_63').style.left = e1+'px';
	tmp = $('cadre_cont_75').childNodes;
	for(i=0; i<tmp.length; i++){
		if(tmp[i].nodeName == 'IMG'){
			tmp[i].style.width = p2+'px';
			tmp[i].style.height = 'auto';
			break;
		}
	}
	
	p1 = Math.round(rest*0.25);
	e1 = 260 + p1 + Math.round(rest*0.1);
	p2 = Math.round(rest*0.45);
	
	$('cadre_62').style.left = '260px';
	tmp = $('cadre_cont_77').childNodes;
	for(i=0; i<tmp.length; i++){
		if(tmp[i].nodeName == 'IMG'){
			tmp[i].style.width = p1+'px';
			tmp[i].style.height = 'auto';
			break;
		}
	}
	
	$('cadre_61').style.left = e1+'px';
	tmp = $('cadre_cont_76').childNodes;
	for(i=0; i<tmp.length; i++){
		if(tmp[i].nodeName == 'IMG'){
			tmp[i].style.width = p2+'px';
			tmp[i].style.height = 'auto';
			break;
		}
	}
}


/**
 * Return la taille de l'écran
 * @return <Array> la taille de l'écran [Width, Height]
 */
function getTailleEcran(){
	var tab = Array();
	if (window.innerHeight == null ){
		tab[0] = ($('bodyy').getWidth());
		tab[1] = ($('bodyy').getHeight());
	}else{
		tab[0] = (window.innerWidth);
		tab[1] = (window.innerHeight);
	}
	return tab;
}



function cacheTexte(id){
	var tabCadre = new Array('cadre_36','cadre_37','cadre_39','cadre_41','cadre_60','cadre_44',
							'cadre_45','cadre_46','cadre_47','cadre_51','cadre_52','cadre_53','cadre_56','cadre_69');
	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;';
			}
		}
	}
}

