
//Ian McDonald
//Section Script 
//*****- InfoDesk -*****
//January 29, 2006
//this is used for internet exlplorer is handles table rows dif than Firefox.


showRow = (navigator.appName.indexOf("Internet Explorer") != -1) ? "block" :
"table-row";

// Functions below are used to show and hide rows in sidebar.


// there is a function for each sidebar main section, i did not have time to make it dynamic.
function Toggle_ZSM(count)
{
f = document.getElementById("ZSM");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_APZ(count)
{
f = document.getElementById("APZ");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_ZooMaps(count)
{
f = document.getElementById("ZooMaps");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_Privacy(count)
{
f = document.getElementById("Privacy");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_KidsArea(count)
{
f = document.getElementById("KidsArea");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_Volunteer(count)
{
f = document.getElementById("Volunteer");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_History(count)
{
f = document.getElementById("History");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_Jobs(count)
{
f = document.getElementById("Jobs");
f.style.display = (f.style.display == "none") ? showRow : "none";
}

function Toggle_Headlines(count)
{
f = document.getElementById("Headlines");
f.style.display = (f.style.display == "none") ? showRow : "none";
}