<!--
if(parseInt(navigator.appVersion) > 2){

	// declare and assign names to the regular images
		var about = new Image(184,31);
		about.src = "img/nav/joy-about-cold.gif";
		var contact = new Image(184,31);
		contact.src = "img/nav/joy-contact-cold.gif";
		var figur = new Image(184,44);
		figur.src = "img/nav/joy-figur-cold.gif";
		var home = new Image(184,31);
		home.src = "img/nav/joy-home-cold.gif";
		var nonfig = new Image(184,44);
		nonfig.src = "img/nav/joy-nonfig-cold.gif";
		var price = new Image(184,31);
		price.src = "img/nav/joy-price-cold.gif";
		
	// rollover images
		var about = new Image(184,31);
		about.src = "img/nav/joy-about-hot.gif";
		var contact = new Image(184,31);
		contact.src = "img/nav/joy-contact-hot.gif";
		var figur = new Image(184,44);
		figur.src = "img/nav/joy-figur-hot.gif";
		var home = new Image(184,31);
		home.src = "img/nav/joy-home-hot.gif";
		var nonfig = new Image(184,44);
		nonfig.src = "img/nav/joy-nonfig-hot.gif";
		var price = new Image(184,31);
		price.src = "img/nav/joy-price-hot.gif";
	

} // end if parseInt()

function changeImage(imgName, newSource){

	// change the source of the particular image to the 
	// mouseover source
	document.images[imgName].src = newSource;
	
	// return from the function
	return false;

} // end the function changeImage()
//-->