/****** FUNZIONI ******/
function levatasto() {
$("#tasto_custom").hide("slide", { direction: "vertical" }, 700);
}

function mettitasto() {
$("#tasto_custom").show("slide", { direction: "vertical" }, 700);
}



/****** AL CLICK DI APERTURA ******/
$(document).ready(function() {
$("#tasto_custom1").click(function () {
$("#custom").show("blind", { direction: "vertical" }, 700);
setTimeout('levatasto()',1000);
});



/****** AL CLICK DI CHIUSURA ******/
$("#custom_close").click(function () {
$("#custom").hide("slide", { direction: "vertical" }, 700);
setTimeout('mettitasto()',700);
});

});





/****** PRECEDENTE SUCCESSIVA ******/
function freccia(menuId) {
document.getElementById('box_0').style.display = "none";
document.getElementById('box_1').style.display = "none";
document.getElementById('box_2').style.display = "none";
document.getElementById('box_3').style.display = "none";
document.getElementById('box_4').style.display = "none";

if(document.getElementById(menuId).style.display == "none") {
  document.getElementById(menuId).style.display = "block";
} else {
  document.getElementById(menuId).style.display = "none";
}
}



/****** COLORI ******/
function colori(menuId) {
document.getElementById('colori_1').style.display = "none";
document.getElementById('colori_2').style.display = "none";

if(document.getElementById(menuId).style.display == "none") {
  document.getElementById(menuId).style.display = "block";
} else {
  document.getElementById(menuId).style.display = "none";
}
}

