// code controls setting up the javascript necessary to swap out the html code 
//   for menu rollovers for Monarch Tax Services
//
// Each section, with the exception of the original, 
//   sets several varaibles before calling a module 
//   which writes the javascript code to handle the swap.  
//
// Written 2009 October - Dj Stover
//  Copyright 2009 - Web Creations By Z - All Rights Reserved
//<!--

function changeVisibilityMenuItem1()
{
document.getElementById("MenuItem1").style.visibility="visible";
}
function changeVisibilityMenuItem1Restore()
{
document.getElementById("MenuItem1").style.visibility="hidden";
}


function changeVisibilityMenuItem2()
{
document.getElementById("MenuItem2").style.visibility="visible";
document.getElementById("MenuItem2p").style.color="#DCF1F9";
}
function changeVisibilityMenuItem2Restore()
{
document.getElementById("MenuItem2").style.visibility="hidden";
document.getElementById("MenuItem2p").style.color="#ffffff";
}


function changeVisibilityMenuItem3()
{
document.getElementById("MenuItem3").style.visibility="visible";
document.getElementById("MenuItem3p").style.color="#DCF1F9";
}
function changeVisibilityMenuItem3Restore()
{
document.getElementById("MenuItem3").style.visibility="hidden";
document.getElementById("MenuItem3p").style.color="#ffffff";
}


function changeVisibilityMenuItem4()
{
document.getElementById("MenuItem4").style.visibility="visible";
document.getElementById("MenuItem4p").style.color="#DCF1F9";
}
function changeVisibilityMenuItem4Restore()
{
document.getElementById("MenuItem4").style.visibility="hidden";
document.getElementById("MenuItem4p").style.color="#ffffff";
}


function changeVisibilityMenuItem5()
{
document.getElementById("MenuItem5").style.visibility="visible";
document.getElementById("MenuItem5p").style.color="#DCF1F9";
}
function changeVisibilityMenuItem5Restore()
{
document.getElementById("MenuItem5").style.visibility="hidden";
document.getElementById("MenuItem5p").style.color="#ffffff";
}


function changeVisibilityMenuItem6()
{
document.getElementById("MenuItem6").style.visibility="visible";
document.getElementById("MenuItem6p").style.color="#DCF1F9";
}
function changeVisibilityMenuItem6Restore()
{
document.getElementById("MenuItem6").style.visibility="hidden";
document.getElementById("MenuItem6p").style.color="#ffffff";
}





//-->

