// -- GESTION DES ROLLOVER ET DES CLICKS DE MENUS --


function menuOver(obj,type){
	//alert(obj.style.backgroundImage);
	if(type==0){
		obj.style.backgroundImage='url(../images/spacer_E8C9D9.gif)';
		obj.style.fontWeight='normal';
	}else{	
		obj.style.backgroundImage='url(../images/spacer_F3DBE7.gif)';
		obj.style.fontWeight='bold';
	}
}
function menuClick(the_menu,the_rubrique,id_smenu,the_strate,the_type){
	// -- STRATE 0=CATALOGUE, 1=SITE
	//alert(the_menu+"\n"+the_rubrique+"\n"+id_smenu+"\n"+the_strate+"\n"+the_type); // -- DEBUG
	if(the_strate==0){
		//MODIFICATION FAITE LE 29 09 2006 PAR OLIVIER AVANT LA VALEUR DE id_smenu était 1000
		//MODIFICATION FAITE LE 24 09 2007 PAR BENOIT AVANT LA VALEUR DE id_smenu était 1400
		if(id_smenu<=1700){ 
			if(the_type==0){
				document.location.href='page.asp?decor='+id_smenu+'&menu='+the_menu+'&rubrique='+the_rubrique;//page=include_decor&
			}else if(the_type==1){
				document.location.href='page.asp?menu='+the_menu+'&rubrique='+the_rubrique;
			}
		}
	}else if(the_strate==1){
		//MODIFICATION FAITE LE 29 09 2006 PAR OLIVIER AVANT LA VALEUR DE id_smenu était 1000
		//MODIFICATION FAITE LE 24 09 2007 PAR BENOIT AVANT LA VALEUR DE id_smenu était 1400
		if(id_smenu<=1700){ 
			if(the_type==0){
				document.location.href='page.asp?menu='+the_menu+'&rubrique='+the_rubrique+'&id_smenu='+id_smenu;
			}else if(the_type==1){
				document.location.href='page.asp?menu='+the_menu+'&rubrique='+the_rubrique+'&id_smenu='+id_smenu;
			}
		}		
	}
}