$(document).ready(function(){
// initial set
//$j("#RootItems li ul").css({display: 'none'});
// main nav hover

$("#wholesale").hover(function(){ 
         $(this).parent().children("ul").css({display: 'block'});
	}, function(){
 $(this).parent().children("ul").css({display: 'none'});

});

$("#RootItems li ul").hover(function(){
$(this).css({display: 'block'});
}, function(){ 
$(this).css({display: 'none'});
});
});
