jQuery(document).ready(function(){
  $('div#menu_gen ul > li').mouseover(function() {
    $(this).children('ul:first').css('display','block');
    $(this).children('ul:first').css('left',this.offsetLeft);
    $(this).children('ul:first').css('top',this.offsetTop+26);
  });
$('div#menu_gen ul li ul li').mouseover(function() {
   $('div#menu_gen ul li ul li ul').css('left',this.offsetLeft+130);
   $(this).children('ul:first').css('top','auto');

});
  $('div#menu_gen ul li').mouseout(function() {
    $(this).children('ul').css('display','none');
  });
}); 