﻿mouseonbgcolor="#D9D9D9";
function mouseonmainmenu(objname,i)
{
    currentbgcolor = document.getElementById(objname).style.backgroundColor;
    document.getElementById(objname).style.backgroundColor = mouseonbgcolor;
    
    var ptitle = "ptitle" + i;
    
    document.getElementById(ptitle).className="titleStyle";
}

function mouseoutmainmenu(objname,i)
{
    document.getElementById(objname).style.backgroundColor=currentbgcolor;
    
    var ptitle = "ptitle" + i;
    
    var onclickFlag = document.getElementById("hidonclickFlag").value;
    
    //alert("onclickFlag = " + onclickFlag + "    ptitle = "  + ptitle);
    
    if(ptitle == onclickFlag)
    {
        document.getElementById(ptitle).className="titleStyle";    
    }
    else
    {
        document.getElementById(ptitle).className="LoadTitleStyle";
    }
}

function mouseclickmainmenu(objname,mainmenucount)
{
    for(i=1;i<=mainmenucount;i++)
    {
        document.getElementById("mainmenu"+i).style.backgroundColor=normalbgcolor;
    }
        currentbgcolor=mouseclickbgcolor;
        document.getElementById(objname).style.backgroundColor=mouseclickbgcolor;
}