var preloadFlag = false;
function preLoad() 
	{
	if (document.images) 
		{ 
		img1on  = new Image();img1on.src =  "/images/global/btn_home_on.gif";
		img1off = new Image();img1off.src = "/images/global/btn_home_off.gif";
		img2on  = new Image();img2on.src =  "/images/global/btn_tripsearch_on.gif";
		img2off = new Image();img2off.src = "/images/global/btn_tripsearch_off.gif";
		img3on  = new Image();img3on.src =  "/images/global/btn_justreleased_on.gif";
		img3off = new Image();img3off.src = "/images/global/btn_justreleased_off.gif";
		img4on  = new Image();img4on.src =  "/images/global/btn_research_on.gif";
		img4off = new Image();img4off.src = "/images/global/btn_research_off.gif";
		img5on  = new Image();img5on.src =  "/images/global/btn_testimonials_on.gif";
		img5off = new Image();img5off.src = "/images/global/btn_testimonials_off.gif";
		img6on  = new Image();img6on.src =  "/images/global/btn_myexpeditions_on.gif";
		img6off = new Image();img6off.src = "/images/global/btn_myexpeditions_off.gif";
		img7on  = new Image();img7on.src =  "/images/global/btn_shop_on.gif";
		img7off = new Image();img7off.src = "/images/global/btn_shop_off.gif";
//		leftArrowOn = new Image();leftArrowOn.src = "/images/global/arrow_left_on.gif";
//		leftArrowOff = new Image();leftArrowOff.src = "/images/global/arrow_left_off.gif";
//		rightArrowOn = new Image();rightArrowOn.src = "/images/global/arrow_right_on.gif";
//		rightArrowOff = new Image();rightArrowOff.src = "/images/global/arrow_right_off.gif";
		preloadFlag = true;
		}
	}

function change()
	{
	if (document.images && (preloadFlag == true))
		{
		for (var i=0; i<change.arguments.length; i+=2)
			{
			document[change.arguments[i]].src = eval(change.arguments[i+1] + ".src");
			}
		}
	}

