window.onload = function() {

  var retainCount = 0;

 jQuery(".menu li:nth-child(2)").mouseenter(function(){
       retainCount++;
       update();
    }).mouseleave(function(){
       if (retainCount > 0) retainCount--;
       update();
    });
    
 jQuery("#msproductmenu").mouseenter(function(){
       retainCount++;
       update();
    }).mouseleave(function(){
       if (retainCount > 0) retainCount--;
       update();
    });  
      
    
  function update() {

    if(window.location.hash == "#debug") {
      // jQuery(".msbreadcrumb").text(retainCount);
    }


    if (retainCount > 0) {
      jQuery("#msproductmenu").show();
    }
    else {
      jQuery("#msproductmenu").hide();    	
    }
    
  }    


};


