// JavaScript Document


window.onload	=		function(){
	var preImgs;
	
	preImgs		=		[
						 'lnkBaths_f2.jpg',
						 'lnkBathscreens_f2.jpg',
						 'lnkContact_f2.jpg',
						 'lnkFeatures_f2.jpg',
						 'lnkHome_f2.jpg',
						 'lnkInfinityEight_f2.jpg',
						 'lnkOptionSix_f2.jpg',
						 'lnkSupport_f2.jpg',
						 'lnkVisionTen_f2.jpg'
						 ];
	
	preloadImages(preImgs,'images/navigation/');
	
	
}


function preloadImages(inImgs,inPath){
	var i;
	var thisImg;
	
	for(i=0;i<inImgs.length;i++){
		thisImg		=		new Image();
		thisImg.src	=		inPath + inImgs[i];
	}
	
}

function mouseState(inBaseID,inState){
	var theBaseName;
	var theImgID;
	var theImg;
	var theStr;
	
	theImgID	=		'lnkImg' + inBaseID;
	theBaseName	=		'lnk' + inBaseID;
	
	theImg		=		document.getElementById(theImgID);
	if(!theImg) return;
	
	theStr		=		'images/navigation/' + theBaseName + String(inState?'_f2':'') + '.jpg';
	theImg.src	=		theStr;
}
