// JavaScript Document

// Fonctions Dreamweaver ----------------------

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

// ---------------------

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

// Fonctions perso -------------------------------------

// Gestion des calques
function afficher(calque) {
    
	// effacement des calques
	MM_showHideLayers('gal','','hide');
	MM_showHideLayers('cooperation','','hide');
	MM_showHideLayers('collectivite','','hide');
	MM_showHideLayers('tourisme','','hide');
	
	// affichage du calque demandé
	setTimeout("MM_showHideLayers('"+calque+"','','show')", 100);
	
}
	
// Gestion du rollover sur les menus
function roll(obj, couleur) {
  obj.style.backgroundColor=couleur;
}

// ----------------------------------------------------
var tempo = 0;

function roll_menu(btn, clignotement) {

    // extinction du bouton éclairé
    MM_swapImgRestore();
	
	// éclairage du bouton survollé	
	MM_swapImage(btn,'','images/menu/btn_'+btn+'_2.gif',1);
	
	// effacement des sous-menus
	MM_showHideLayers('ctourisme','','hide');
	MM_showHideLayers('cgal','','hide');
	MM_showHideLayers('ccooperation','','hide');
	MM_showHideLayers('ccollectivite','','hide');
	MM_showHideLayers('eff','','hide');
	
	// affichage du sous-menu correspondant
	MM_showHideLayers('c'+btn,'','show');
	// MM_showHideLayers('eff','','show');
	
	if (clignotement == 1) {
	    document.images["haut_page"].src="images/general/haut_page2.gif"
	}else{
	    document.images["haut_page"].src="images/general/haut_page.gif"
	}
	
}

// tempo apparition menu page d'accueil
function tempo_on(rubrique) {
    clignotement = 0;
    clearTimeout(tempo);
    tempo=setTimeout("roll_menu('"+rubrique+"', 0)", 1000);
}

// tempo apparition menu page d'accueil
function tempo_off() {
    clearTimeout(tempo);	
}

// ouvrir fenêtre mail
function contact(){
  
  // propriétés
  hauteur = 210;
  largeur = 200;
  //options = "scrollbars,";
  options = "";

  // pour centrage à l'écran de la fenêtre
  posH = (screen.width-largeur)/2;
  posV = (screen.height-hauteur)/2;

  // options de la fenêtre
  options += "width="+largeur+",height="+hauteur+",top="+posV+",left="+posH;

  // ouverture de la fenêtre
  fen=window.open("contact.htm","Fichier",options);
  fen.focus();
}

// ouvrir fenêtre "à connaitre"
function produit(){
  
  // propriétés
  hauteur = 600;
  largeur = 500;
  options = "scrollbars, toolbar, resizable, status, ";
  
  // pour centrage à l'écran de la fenêtre
  posH = (screen.width-largeur)/2;
  posV = (screen.height-hauteur)/2;

  // options de la fenêtre
  options += "width="+largeur+",height="+hauteur+",top="+posV+",left="+posH;

  // ouverture de la fenêtre
  fen=window.open("produit.htm","Fichier",options);
  fen.focus();
}