﻿// JAVASCRIPT FOR 000_toprow.html DOCUMENT
// Written by Jennifer Buck 2004 as inline Script
// Updated by David Buck 4/23/2009
// Split to External File by Harvey S. Ross 4/23/20009

var imageUrls = new Array("images/tabs_home_on.gif",
                          "images/tabs_distcc_on.gif",
                          "images/tabs_counties_on.gif",
                          "images/tabs_elections_on.gif",
                          "images/tabs_getactive_on.gif");
var preloadImages = new Array();
for (var i=0; i<imageUrls.length; i++) 
   {
   preloadImages[i] = new Image();
   preloadImages[i].src = imageUrls[i];
   }	

function homeOn() { document.getElementById("tabsPlaceHolder").src="images/tabs_home_on.gif"; }
function distccOn() { document.getElementById("tabsPlaceHolder").src="images/tabs_distcc_on.gif"; }
function countiesOn() { document.getElementById("tabsPlaceHolder").src="images/tabs_counties_on.gif"; }
function electionsOn() { document.getElementById("tabsPlaceHolder").src="images/tabs_elections_on.gif"; }
function getactiveOn() { document.getElementById("tabsPlaceHolder").src="images/tabs_getactive_on.gif"; }

function homeHover() {var homeSummary=document.getElementById('homeSummary'); homeSummary.style.visibility="visible"; }
function distccHover() {var distccSummary=document.getElementById('distccSummary'); distccSummary.style.visibility="visible"; }
function countiesHover() {var countiesSummary=document.getElementById('countiesSummary'); countiesSummary.style.visibility="visible"; }
function electionsHover() {var electionsSummary=document.getElementById('electionsSummary'); electionsSummary.style.visibility="visible"; }
function getactiveHover() {var getactiveSummary=document.getElementById('getactiveSummary'); getactiveSummary.style.visibility="visible"; }
 
function homeOut() {var homeSummary=document.getElementById('homeSummary'); homeSummary.style.visibility="hidden"; }
function distccOut() {var distccSummary=document.getElementById('distccSummary'); distccSummary.style.visibility="hidden"; }
function countiesOut() {var countiesSummary=document.getElementById('countiesSummary'); countiesSummary.style.visibility="hidden"; }
function electionsOut() {var electionsSummary=document.getElementById('electionsSummary'); electionsSummary.style.visibility="hidden"; }
function getactiveOut() {var getactiveSummary=document.getElementById('getactiveSummary'); getactiveSummary.style.visibility="hidden"; }

// End of Javascript 
