window.onload=init;
function init()
        {
        document.getElementById("shadow2").style.display="block";
        document.getElementById("home").style.backgroundColor="#989898";
        }

var oldmenu="home";
var oldcontent="home_page";

function no_highlight(first)
        {
        if (first!=oldcontent.split("_")[0])
            {document.getElementById(first).style.backgroundColor="transparent";}
        }

function highlight(first)
        {
        document.getElementById(first).style.backgroundColor="#989898";
        if (oldmenu != first)
            {
            document.getElementById(oldmenu).style.backgroundColor="transparent";
            oldmenu=first;
            }
        }
var menu_list="homeaboutusthehillfindusentryregulationsexhibitors";

function change(first)
        {
        if (oldcontent != first)
            {
            document.getElementById(first).style.display="block";
            document.getElementById(oldcontent).style.display="none";
            root=oldcontent.split("_")[0];
            if (menu_list.indexOf(root)>-1)
               {document.getElementById(root).style.backgroundColor="transparent";}
            root=first.split("_")[0];
            if (menu_list.indexOf(root)>-1)
               {document.getElementById(root).style.backgroundColor="#989898";}
            oldcontent=first;
            }
         }

