function subMenu(id){
  jQuery("."+id).show();
}

function subMenuClose(id){
  jQuery("."+id).hide();
}

// jQuery(document).ready(function(){
//   jQuery('#menuProdotti li').hover(function(){
//     jQuery('> div', this).fadeIn();
//   },function(){
//     jQuery('> div', this).fadeOut('fast');
//   });
//
//   jQuery('.sottomenuProdInfo li > div').hover(function(){
//     jQuery('> div', this).fadeIn();
//   },function(){
//     jQuery('> div', this).fadeOut('fast');
//   });
//
// });


function MainMenu(id){
    
  if( jQuery('.sottomenu').is(':visible'))
      jQuery('.sottomenu').hide();
    
  jQuery("#"+id).show();
}

function MainMenuClose(id){
  jQuery("#"+id).hide();
}

function MainMenuSubsite(id){
  jQuery(id).show();
}

function MainMenuCloseSubsite(id){
  jQuery(id).hide();
}


function Lang(id){
  jQuery("."+id).show();
}

function LangClose(id){
  jQuery("."+id).hide();
}
