<!-- conceal

/************************************************
 *  Javascript Library for Leah Lopez          	*
 *  Copyright 2004 Monte Thompson				*
 ************************************************/

 /* Which browser */
function browser()	{														// determine which browser
	ns4 = (document.layers)? true:false										// if netscape ns4 = true, otherwise ns4 = false.
	ns6 = (document.getElementById && !document.all)? true:false			// if netscape ns6 = true, otherwise ns4 = false.
	ie = (document.all)? true:false											// if internet explorer ie = true, otherwise ie = false.
	visible = (ns4) ? "show":"visible"										// Set the property for Menu visibility
	hidden = (ns4) ? "hide":"hidden"
}

/* Preload the images */ 
function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}

/* Image rollover */
function rollOver(layer,name,source)	{
	if (document.images) {
		if (ns4) eval('document.'+layer+'.document.images["'+name+'"].src = '+source+'.src')
		else	document.images[name].src = eval(source+".src")
	}
}
// reveal -->