var Type = 0;
var host1 = document.location.host;
var page1 = document.location.href.substring(document.location.href.indexOf(host1)+host1.length);
page1 = page1.toLowerCase();

function getMenuId(menuid) {
 return "cat_" + menuid;
}

function getMenu(menuid) {
 menuid = getMenuId(menuid);
 var menus = document.getElementById(menuid);
 if (menus == null) return -1;
 var tds = menus.getElementsByTagName("td");
 for (var i = 0; i < tds.length; i++) {
  if (tds[i].getAttribute("onclick") != null) {
   itemurl = tds[i].getAttribute("onclick").toString();
   pos = itemurl.indexOf("=");
   if (pos != -1) {
    pos2 = itemurl.indexOf(';');
    itemurl = itemurl.substring(pos+2,pos2-1);
    if (itemurl.toLowerCase() == page1.toLowerCase()) return i;
   }
  }
 }
 return -1;
}

function header() {
 //header selector begin
 /*by menus*/
if (Type==0) {
 var temp=-1;
 temp=getMenu(511880);
 if (temp!=-1) {Type=temp+1;}
 else {
  temp=getMenu(512139);
  if (temp!=-1) {Type=4;}
  else {
   temp=getMenu(512145);
   if (temp!=-1) {Type=5;}
   else {
    temp=getMenu(512154);
    if (temp!=-1) {Type=6;}
	else {
     temp=getMenu(512160);
     if (temp!=-1) {Type=7;}
	 else {
      temp=getMenu(512161);
      if (temp!=-1) {Type=8;}
	  else {
       temp=getMenu(512166);;
       if (temp!=-1) {Type=9;}
	  }
	 }
	}
   }
  }
 }
 /*by file name*/
 if (page1=="/profils_investisseurs.htm") Type=4;
 if (page1=="/inscription_gratuite_entreprises_form.htm") Type=4;
 if (page1=="/services_tarifs_entreprises.htm") Type=4;
 if (page1=="/matching_investor_form.htm") Type=4;
 if (page1=="/profils_entreprises.htm") Type=5;
 if (page1=="/inscription_gratuite_investisseurs_form.htm") Type=5;
 if (page1=="/services_tarifs_investisseurs.htm") Type=5;
 if (page1=="/matching_entreprise_form.htm") Type=5;
 if (page1=="/booking-form.htm") Type=6;
 if (page1=="/matching_conceiller_form.htm") Type=7;
 
 if (page1.indexOf("4271")!=-1) Type=4;
 if (page1.indexOf("4693")!=-1) Type=5;
 
 //header selector end
 
 if (Type==0) {
  temp=getMenu(511849);
  if (temp!=-1) {Type=temp+6;}
 }
} else {
 for (var i=0; i<10; i++) document.getElementById("header"+i).style.display="none";
}

 if (Type<4) {
  document.getElementById("left").style.backgroundImage="url(/images/header_bg.jpg)";
  document.getElementById("header-left").style.backgroundImage="url(/images/header_bg.jpg)";
 } else if (Type<5) {
  document.getElementById("left").style.backgroundImage="url(/images/header_bg1.jpg)";
  document.getElementById("header-left").style.backgroundImage="url(/images/header_bg1.jpg)";
 } else if (Type<6) {
  document.getElementById("left").style.backgroundImage="url(/images/header_bg2.jpg)";
  document.getElementById("header-left").style.backgroundImage="url(/images/header_bg2.jpg)";
 } else if (Type<11) {
  document.getElementById("left").style.backgroundImage="url(/images/header_bg3.jpg)";
  document.getElementById("header-left").style.backgroundImage="url(/images/header_bg3.jpg)";
 }
 document.getElementById("header"+Type).style.display="inline";
}
 

  