<!--

if (document.images) {
	// MAIN MENU IMAGES
	nav_about = new Image();
	nav_about.src =  "images/nav_about.gif";
	nav_about_on = new Image();
	nav_about_on.src =  "images/nav_about_on.gif";

	nav_order = new Image();
	nav_order.src =  "images/nav_order.gif";
	nav_order_on = new Image();
	nav_order_on.src =  "images/nav_order_on.gif";

	nav_shirtStyles = new Image();
	nav_shirtStyles.src =  "images/nav_shirtStyles.gif";
	nav_shirtStyles_on = new Image();
	nav_shirtStyles_on.src =  "images/nav_shirtStyles_on.gif";

	nav_biography = new Image();
	nav_biography.src =  "images/nav_biography.gif";
	nav_biography_on = new Image();
	nav_biography_on.src =  "images/nav_biography_on.gif";

	nav_contact = new Image();
	nav_contact.src =  "images/nav_contact.gif";
	nav_contact_on = new Image();
	nav_contact_on.src =  "images/nav_contact_on.gif";

	contactButton = new Image();
	contactButton.src =  "images/contactButton.gif";
	contactButton_on = new Image();
	contactButton_on.src =  "images/contactButton_on.gif";

	downloadButton = new Image();
	downloadButton.src =  "images/downloadButton.gif";
	downloadButton_on = new Image();
	downloadButton_on.src =  "images/downloadButton_on.gif";

	nav_fabrics = new Image();
	nav_fabrics.src =  "images/nav_fabrics.gif";
	nav_fabrics_on = new Image();
	nav_fabrics_on.src =  "images/nav_fabrics_on.gif";

}

function subOn(imageName) {	
	if (document.images) {
		document[imageName].src = eval(imageName + "_on.src");
	}	
}

function subOff(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + ".src");
	}
}


	
//-->  