﻿	//doHomepageImageQuery();
	setMenuSection('');

	
	
if(playerIsOK){
	// on détache puis on rattche le breadcrumbs pour qu'il passe par dessus l'animation
	var d = document.getElementById("content");
	var olddiv = document.getElementById("breadcrumb");
	var rdiv = d.removeChild(olddiv);
	// on rattache le breadcrumbs mais au dessus de l'animation
	var newdiv = document.getElementById("anim_container");
	//var newdiv = document.getElementById("content");
	newdiv.appendChild(rdiv);
}
else{
	displayStaticHome("");
}
// on modifie le lien du breadCrimbs pour qu'il soit cliquable comme le logo pomona
document.getElementById("breadcrumb").innerHTML="<a href='javascript:goToHomePage()'>Accueil</a>  /  <a href='#' class='breadcrumb-last'>Bienvenue</a>";

function displayStaticHome(param){
	// path des images
	var pathImg=pathRessources +"/flash/home/asset/img/";
	
	var staticContent="";
	if(param!=null){
		staticContent+="<font style='font-size:7pt;color:#d2e3fb'>"+param+"</font>";
	}
	staticContent+="<center><table width='600' style='margin-top:50px;' >";
	
	var indexCol=1;
	
	
	for(var i=0;i<imagesHome.length;i++){
		var item=imagesHome[i];
		
		var staticHomeFileName=item[0];
		var staticHomeFileLabel=item[1];
		var staticHomeJSFunctionRedirect=item[2];
		var staticHomeParamRedirect=item[3];
		var staticHomeImgMode=item[4];
		var staticHomeURLVideo=item[5];
		var staticHomeDisplayStatic=item[6];
		
		if(staticHomeDisplayStatic=="true"){
		
			if(indexCol==1){
				if(staticHomeImgMode=="PAYSAGE"){
					staticContent+="<tr height='60px'>";
				}
				else{
					staticContent+="<tr height='140px'>";
				}
			}
			if(staticHomeImgMode=="PAYSAGE"){
				staticContent+="<td align='center'><a title='"+staticHomeFileLabel+"' href='javascript:"+staticHomeJSFunctionRedirect+"(\""+staticHomeParamRedirect+"\")'><img src='"+pathImg+staticHomeFileName+"' width='100'/></a></td>";
			}
			else{
				staticContent+="<td align='center'><a title='"+staticHomeFileLabel+"' href='javascript:"+staticHomeJSFunctionRedirect+"(\""+staticHomeParamRedirect+"\")'><img src='"+pathImg+staticHomeFileName+"' height='130'/></a></td>";
			}
			
			indexCol++;
			
			if(i<imagesHome.length){
				if(staticHomeImgMode=="PAYSAGE"){
					if(indexCol>5){
						indexCol=1;
						staticContent+="</tr>";
					}
				}
				else{
					if(indexCol>6){
						indexCol=1;
						staticContent+="</tr>";
					}
				}
			}
		}
		
	}
	
	staticContent+="</table>";
	
	if(!playerIsOK){
		staticContent+="<table width='600' style='margin-top:50px;' >";
		staticContent+="<tr>";
		staticContent+="<td>Cette page requière flash player "+playerVersionRequired+" :</td>";
		staticContent+="<td><a href='javascript:gotoAdobe()'>";
		staticContent+="<img src='"+pathRessources+"/img/common/get_flash_player.gif' alt='Obtenir Adobe Flash player. http://www.adobe.com/go/getflashplayer' />";		
		staticContent+="</a></td>";
		staticContent+="</tr>";
		staticContent+="</table>";
		
	}
	staticContent+="</center>";
			
		
		
	document.getElementById("anim_container").innerHTML=staticContent;
}