
var currentbgcolor; 

function hidemenu(menuID)
{
document.getElementById("submenu_" + menuID).style.visibility="hidden";
document.getElementById("m_" + menuID).style.backgroundColor="transparent";
}

function showmenu(menuID)
{
document.getElementById("submenu_" + menuID).style.visibility="visible";
document.getElementById("m_" + menuID).style.backgroundColor="#157fa9";
}

function lightmenu(menuID)
{
document.getElementById("m_" + menuID).style.backgroundColor="#157fa9";
}

function offmenu(menuID)
{
document.getElementById("m_" + menuID).style.backgroundColor="transparent";
}

function changebg(color) {
  currentbgcolor = color;
  document.body.style.backgroundColor="#" + color;
}

function ccdone(){
  window.location = "/musim/changecolor_done.php?color=" + currentbgcolor;
}

