
<!-- Hide for older browsers

/********************************************************************************
This script is made by and copyrighted to Thomas Brattli at www.bratta.com
Visit www.bratta.com/dhtml for more great scripts. This may be used freely as 
long as this msg is intact! I'd appreciate any links to my page.
********************************************************************************/

//Preloading *******************************************************************
function preImages(length, path, image, type) {	
  for(var i = 0; i<length; i++) {
    this[i]= new Image()		
	this[i].src= path + (i+1) + image +'.'+type
	self.status=this.src	
  }	
	return this
}
if(document.images){ //If the browser supports the imageobject
  //Call the preImages function to preload.
  preOff=new preImages(14,'Images/nav_','','gif')
  preOn=new preImages(14,'Images/nav_','_on','gif')}

//The imageswap functions, works with layers for netscape.
function mon(num,div) {
  if (document.images) { //If the imageobject is supported
	//If netscape and a div name is sent to the function, do a netsted imageswap
	if(document.layers && div) document[div].document["img"+num].src= preOn[num-1].src
	//else do a regular swap
	else document.images["img"+num].src = preOn[num-1].src           
  }
}
function moff(num,div) {
  if (document.images) {
	if(document.layers && div) document[div].document["img"+num].src= preOff[num-1].src
    else document.images["img"+num].src =preOff[num-1].src
  }
}
//-->



