//si on retrouve ie
	if (navigator.appVersion.indexOf("MSIE")!=-1){
		document.write('<link href="css/template_ie.css" rel="stylesheet" type="text/css" />');
	};

//si on retrouve ie6
	if (navigator.appVersion.indexOf("MSIE 6")!=-1){
		document.write('<link href="css/template_ie6.css" rel="stylesheet" type="text/css" />');
	};
	
function hack(){
	if (navigator.appVersion.indexOf("MSIE 6")!=-1){
		document.write('<div id="hack"></div>');
	}
}


function hack_flash_ie(langue){
	if(langue=='enter'){
		document.write('<div id="anim_enter_ie">');
	}
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="339" height="272"><param name="movie" value="videos/anim_'+langue+'.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="videos/anim_'+langue+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="339" height="272"></embed></object>');
	if(langue=='enter'){
		document.write('</div>');
	}
	
}
function home_change_col(element, etat){
	
	//en fonction des elements on va chercher differents id.
	tab_var=new Array();
	if(element==2){
		tab_var=Array('r1','r2','r3','r4','r5');
	}else if(element==3){
		tab_var=Array('i1');
	}else if(element==1){
		tab_var=Array('h1');
	}else if(element==4){
		tab_var=Array('e1','e2','e3','e4');
	}

	//en fonction de l'etat, on met la couleur ou on l'enleve
	//ici on l'enleve
	var couleur='';
	if(etat==0){
		couleur="#54534A";
	}else{
		couleur="#AE2E19";
	}
	//alert(tab_var.length);
	for (var a=0; a<tab_var.length; a++){
		document.getElementById(tab_var[a]).style.color=couleur;
	}
}


function fctpreload() {
	var arrimg = new Array(
		"menu_01_txt_en_o.jpg",
		"menu_01_txt_fr_o.jpg",
		"menu_02_txt_en_o.jpg",
		"menu_02_txt_fr_o.jpg",
		"menu_03_txt_en_o.jpg",
		"menu_03_txt_fr_o.jpg",
		"menu_04_txt_en_o.jpg",
		"menu_04_txt_fr_o.jpg",
		"menu_05_txt_o.jpg"
	);
	for(i=0; i<arrimg.length; i++) {
		var newimg = new Image();
		newimg.src = "http://www.contack.net/images/"+arrimg[i];
	}
	mootools();
}


