var js_rechercheRapid = new obj_recherche_rapide('Votre recherche', '#d9d9d9', '#000');  
var js_cart = new obj_cart();
var js_compte = new obj_compte();
var js_formPush = new obj_push_form();
var js_footer = new obj_footer();
var js_newsletter = new obj_newsletter();
var isLaunch = false;

// METTRE ICI LE CODE QUE VOUS VOULEZ EXECUTER AU CHARGEMENT
function onLaunch()
{  //init();
    if (!isLaunch){
      obj_nivelator("bloc3col");
      obj_nivelator("bloc2col noMarg");
      
        
      //  js_touch.start("menu_ul"); 
      js_rechercheRapid.start();
      isLaunch = true;

      if (document.getElementById('leftcol') && document.getElementById('leftcol').offsetHeight > document.getElementById('centercol').offsetHeight){
        document.getElementById('centercol').style.height = document.getElementById('leftcol').offsetHeight + 17 + 'px';
      }
      
       if (moreAction_onLaunch)
        {
            eval(moreAction_onLaunch)
        }
   }
}


if (typeof window.addEventListener == "function"){	
 	window.addEventListener("load", onLaunch, false); 
}
else{
	window.attachEvent("onload", onLaunch, false);
}
 
 
function addEvent_listener(thisObject, thisEvent, thisFunction, useCollapseMode){
 
    if (typeof window.addEventListener == "function") {
        thisObject.addEventListener(thisEvent, thisFunction , false);
    } else {  thisObject.attachEvent("on" + thisEvent,thisFunction, false);}
}




