var Timer_id = 0;

$(document).ready(function(){
    
   $('#smoothmenu1').mouseleave(function(){
    window.Timer_id = setTimeout(function(){
        $('#submenu').html('');
    },1200);
   }); 
    $('#submenu').mouseleave(function(){
    window.Timer_id = setTimeout(function(){
        $('#submenu').html('');
    },1200);
   }); 
   $('#smoothmenu1').children('ul').children('li').mouseover(function(){
    var content = $(this).children('a').next('ul').clone();
    if(content != null) {
        $('#submenu').html(content);
    }
   }); 
   $('#smoothmenu1').mouseenter(function(){
    clearTimeout(window.Timer_id);
   });  
   $('#submenu').mouseenter(function(){
    clearTimeout(window.Timer_id);
   });


});
