var preloadFlag = false;

//function preloadImages() {
//if (document.images) {

img00 = new Image();
img00.src = "images/splash-profile-00.gif";
img01 = new Image();
img01.src = "images/splash-profile-01.gif";


img02 = new Image();
img02.src = "images/splash-products-00.gif";
img03 = new Image();
img03.src = "images/splash-products-01.gif";

img04 = new Image();
img04.src = "images/splash-highgear-00.gif";
img05 = new Image();
img05.src = "images/splash-highgear-01.gif";

img06 = new Image();
img06.src = "images/splash-contact-00.gif";
img07 = new Image();
img07.src = "images/splash-contact-01.gif";


img08 = new Image();
img08.src = "images/nav_profile_on.gif";

img09 = new Image();
img09.src = "images/nav_products_on.gif";

img10 = new Image();
img10.src = "images/nav_highgear_on.gif";

img11 = new Image();
img11.src = "images/nav_contact_on.gif";


preloadFlag = true;

//	}
//}

function changeImages(whichImage, whichFile) {
	if(preloadFlag) {
	if (document.images) {
		whichImage.src = "images/" + whichFile + ".gif";
	}
}}


function changeImages(whichImage, whichFile, whichDiv) {
	if(preloadFlag) {
	if (document.images) {
		if( document[whichDiv] )
			document[whichDiv].document[whichImage].src = "images/" + whichFile + ".gif";
		else
			document[whichImage].src = "images/" + whichFile + ".gif";
	}
}}

