var menutimer = 0;

function showmenuOpt(){

document.getElementById("toolbarGDCatoptions").style.display = "block";
document.getElementById("toolbarGDCatoptions").style.backgroundColor = "white";
if(menutimer != 0 ){
window.clearInterval(menutimer);
}
}

function  hidemenuOpt(){
document.getElementById("toolbarGDCatoptions").style.display = "none";
document.getElementById("toolbarGDCatoptions2").style.display = "none";
document.getElementById("toolbarGDCatoptions").style.backgroundColor = "transparent";
document.getElementById("toolbarGDCatoptions2").style.backgroundColor = "transparent";
}

function turnOpt2off(){
document.getElementById("toolbarGDCatoptions2").style.display = "none";
document.getElementById("toolbarGDCatoptions2").style.backgroundColor = "transparent";
}


function dohideOptmenu(){
if(menutimer == 0 ){
menutimer = setInterval("hidemenuOpt()",500);
}else{
window.clearInterval(menutimer);
menutimer = setInterval("hidemenuOpt()",500);
}
}

function showmenuOpt2(){
document.getElementById("toolbarGDCatoptions2").style.display = "block";
document.getElementById("toolbarGDCatoptions2").style.backgroundColor = "white";

if(menutimer != 0 ){
window.clearInterval(menutimer);
}
}

function onEnterBtn1(){
document.getElementById("btn1").style.backgroundColor = "#2C9EBA";

}

function onLeaveBtn1(){
document.getElementById("btn1").style.backgroundColor = "#6FC8DD";

}

function onEnterBtn2(){
document.getElementById("btn2").style.backgroundColor = "#2C9EBA";

}

function onLeaveBtn2(){
document.getElementById("btn2").style.backgroundColor = "#6FC8DD";

}

function onEnterBtn3(){
document.getElementById("btn3").style.backgroundColor = "#2C9EBA";

}

function onLeaveBtn3(){
document.getElementById("btn3").style.backgroundColor = "#6FC8DD";

}

function onEnterBtn4(){
document.getElementById("btn4").style.backgroundColor = "#2C9EBA";

}

function onLeaveBtn4(){
document.getElementById("btn4").style.backgroundColor = "#6FC8DD";

}