﻿function hideMenuCucine(){
    $("#submenu-cucine1").css("display", "none");
    $("#submenu-cucine2").css("display", "none");
    $("#submenu-cucine3").css("display", "none");
} 

function hideMenuCucineSlow(){
    //setTimeout(fadeOut(), 10000);
}
 
function fadeOut(){
    $("#submenu-cucine1").fadeOut("slow");
    $("#submenu-cucine2").fadeOut("slow");
    $("#submenu-cucine3").fadeOut("slow");
} 

function showMenuCucine(){
    $("#submenu-cucine1").fadeIn("slow");
    $("#submenu-cucine2").fadeIn("slow");
    $("#submenu-cucine3").fadeIn("slow");
} 
