<!--//js by lars gelfan / lars@gelfan.com / reuse must include credit
// the best simple image rollover ever
// add loademup function to onload in body tag
function loademup() { //post-load
	if (document.images) {
		picarray = new Array();
            for(j = 0; j < document.images.length; j++) {
					if (document.images[j].name != "") {
				picarray[j] = new Image();
				picarray[j].src = document.images[j].src.substring(0,(document.images[j].src.indexOf('.gif')))+'_hi.gif';
         }// end if            }// end for
	
	}// end if}// end function (loademup)
//--------------------------------------------------------------------------------------------------------------------------
function imgsrc(imgName) {	if (document.images) {
		s = document.images[imgName].src
				if ( s.indexOf('_hi') != -1 ) {			sfx = '.gif'; indx = '_hi';		}		
		else {			sfx = '_hi.gif'; indx = '.gif';		}// end if		
		sx = s.substring(0,(s.indexOf(indx)))+sfx;
		document.images[imgName].src = sx;		
	}// end if}// end function (imgsrc)//--------------------------------------------------------------------------------------------------------------------------
ns=(navigator.appName.lastIndexOf('Netscape') != -1);
//-->
