
dow = false;
function jumpTo(sel) {
	if (!dow || dow.closed) {
		dow = window.open(sel.options[sel.options.selectedIndex].value, "dow");
	} else {
		dow.location.href =  sel.options[sel.options.selectedIndex].value;
	}
}


loaded = false;
imagePaths = new Array();
imagePaths[0] = "images/home_d.gif";
imagePaths[1] = "images/home_o.gif";
imagePaths[2] = "images/products_d.gif";
imagePaths[3] = "images/products_o.gif";
imagePaths[4] = "images/showroom_d.gif";
imagePaths[5] = "images/showroom_o.gif";
imagePaths[6] = "images/location_d.gif";
imagePaths[7] = "images/location_o.gif";
imagePaths[8] = "images/contactus_d.gif";
imagePaths[9] = "images/contactus_o.gif";
imagePaths[10] = "images/directions_d.gif";
imagePaths[11] = "images/directions_o.gif";


function preload() {
imgs = new Array();
	if (document.images){
		for (i=0; i < imagePaths.length;i++){
			imgs[i] = new Image;
			if (imagePaths[i] != "undefined") imgs[i].src = imagePaths[i];		
		}
	}
loaded = true;
}

function swap(name, num) {
	if ((document.images) && (loaded)){
		document[name].src = imgs[num].src;
	}
}

noflash = '<img src="images/noflash.jpg" width="400" height="400">';
