<!--

//ROLLOVER SCRIPT FOR GLOBAL NAVIGATION

var br = false;

if (((navigator.appName.indexOf('Netscape')>=0) && (navigator.appVersion.charAt(0)>=3)) || ((navigator.appName.indexOf('Microsoft') >= 0) && (navigator.appVersion.substring(navigator.appVersion.indexOf('MSIE ')+5,navigator.appVersion.indexOf('MSIE ')+6)>=4))) {
    br = true;
}

// Create image objects, preload all active and inactive images
// You don't need to use any particular naming conventions
// with the actual image files themselves.
// You can also use any combination of .gif, .jpg, .png, or 
// any other file format the browser will display

if (br){

   jmListon = new Image( ); jmListon.src = "images/joinEmail_on.gif";
   jmListoff = new Image( ); jmListoff.src = "images/joinEmail_off.gif";

whatsNewon = new Image(); whatsNewon.src = "images/button_whatsNew_on.gif";
whatsNewoff = new Image(); whatsNewoff.src = "images/button_whatsNew_off.gif";

bNav1on = new Image(); bNav1on.src = "images/bNav_llarson_on.gif";
bNav1off = new Image(); bNav1off.src = "images/bNav_llarson_off.gif";
bNav2on = new Image(); bNav2on.src = "images/bNav_bGrimes_on.gif";
bNav2off = new Image(); bNav2off.src = "images/bNav_bGrimes_off.gif";
bNav3on = new Image(); bNav3on.src = "images/bNav_bLaLuna_on.gif";
bNav3off = new Image(); bNav3off.src = "images/bNav_bLaLuna_off.gif";
bNav4on = new Image(); bNav4on.src = "images/bNav_sWeimer_on.gif";
bNav4off = new Image(); bNav4off.src = "images/bNav_sWeimer_off.gif";

sNav1on = new Image(); sNav1on.src = "images/sNav_theBand_on.gif";
sNav1off = new Image(); sNav1off.src = "images/sNav_theBand_off.gif";
sNav2on = new Image(); sNav2on.src = "images/sNav_ourMusic_on.gif";
sNav2off = new Image(); sNav2off.src = "images/sNav_ourMusic_off.gif";
sNav3on = new Image(); sNav3on.src = "images/sNav_ourCalendar_on.gif";
sNav3off = new Image(); sNav3off.src = "images/sNav_ourCalendar_off.gif";
sNav4on = new Image(); sNav4on.src = "images/sNav_bookingInfo_on.gif";
sNav4off = new Image(); sNav4off.src = "images/sNav_bookingInfo_off.gif";

}

// Function to "activate" images

function imgAct(imgName) {
    if (br) {
        document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "de-activate" images

function imgInact(imgName) {
    if (br) { 
        document[imgName].src = eval(imgName + "off.src");
    }
}

/*************************************
Here's how to call the functions from the HTML 
<A HREF="page1.cfm" onMouseOver="imgAct('img1')" onMouseOut="imgInact('img1')"><IMG src="http://www.workforce-connection.com/images/spi.jpg" NAME="img1"></A>  DON'T FORGET TO NAME YOUR IMAGES APPROPRIATELY!!!!
**************************************/
//--> 

