<!---
	preload = 0;
{
			//top 3 - on
		top3on = new Image();           
		top3on.src = "images/top-on_03.gif";
		
			//top 3 - off
		top3off = new Image();          
		top3off.src = "images/top_03.gif";
		
			//top 7 - on
		hawaiion = new Image();           
		hawaiion.src = "images/hawaii-on.gif";
		
			//top 7 - off
		hawaiioff = new Image();          
		hawaiioff.src = "images/hawaii.gif";
		
			//top 8 - on
		mexicoon = new Image();           
		mexicoon.src = "images/mexico-on.gif";
		
			//top 8 - off
		mexicooff = new Image();          
		mexicooff.src = "images/mexico.gif";
			
			//top more - on
		moreon = new Image();           
		moreon.src = "images/morePics-on.gif";
		
			//top more - off
		moreoff = new Image();          
		moreoff.src = "images/morePics.gif";
		
			//top 10 - on
		top10on = new Image();           
		top10on.src = "images/top-on_10.gif";
		
			//top 10 - off
		top10off = new Image();          
		top10off.src = "images/top_10.gif";
		
			//top cambodia - on
		cambodiaon = new Image();           
		cambodiaon.src = "images/cambodia-on.gif";
		
			//top cambodia - off
		cambodiaoff = new Image();          
		cambodiaoff.src = "images/cambodia.gif";
		
			//top laos - on
		laoson = new Image();           
		laoson.src = "images/laos-on.gif";
		
			//top laos - off
		laosoff = new Image();          
		laosoff.src = "images/laos.gif";
		
			//top India - on
		indiaon = new Image();           
		indiaon.src = "images/india-on.gif";
		
			//top India - off
		indiaoff = new Image();          
		indiaoff.src = "images/india.gif";
		
			//top thailand - on
		thailandon = new Image();           
		thailandon.src = "images/thailand-on.gif";
		
			//top thailand - off
		thailandoff = new Image();          
		thailandoff.src = "images/thailand.gif";
		
			//top imports - on
		importson = new Image();           
		importson.src = "images/imports-on.gif";
		
			//top imports - off
		importsoff = new Image();          
		importsoff.src = "images/imports.gif";
		
			//top Music - on
		musicon = new Image();           
		musicon.src = "images/music-on.gif";
		
			//top music - off
		musicoff = new Image();          
		musicoff.src = "images/music.gif";
		
			//top Travel log - on
		travelon = new Image();           
		travelon.src = "images/travel-on.gif";
		
			//top Travel Log - off
		traveloff = new Image();          
		traveloff.src = "images/travel.gif";
		
			//top Dances - on
		danceon = new Image();           
		danceon.src = "images/dance-on.gif";
		
			//top Dances - off
		danceoff = new Image();          
		danceoff.src = "images/dance.gif";
		
			//top About - on
		abouton = new Image();           
		abouton.src = "images/about-on.gif";
		
			//top about - off
		aboutoff = new Image();          
		aboutoff.src = "images/about.gif";
		
			//top malaysia - on
		malaysiaon = new Image();           
		malaysiaon.src = "images/malaysia-on.gif";
		
			//top malaysia - off
		malaysiaoff = new Image();          
		malaysiaoff.src = "images/malaysia.gif";
		
		
	preload = 1;
}

function imgAct(imgName) {			// Function to "activate" images.
if (preload==1) {
			document[imgName].src = eval(imgName + "on.src");
	}
}
function imgInact(imgName) {		// Function to "deactivate" images.
if (preload==1) {
			document[imgName].src = eval(imgName + "off.src");
	}
}

//--->