// JavaScript Document

function highlight(theMenu) {
	document.getElementById(theMenu).src = 'images/' + theMenu + 'Down.gif';
}

function unHighlight(theMenu) {
	document.getElementById(theMenu).src = 'images/' + theMenu + 'Up.gif';
}

var myImages = new Array();

function preloading()	{
	for (x=0; x<preloading.arguments.length; x++) {
		myImages[x] = new Image();
		myImages[x].src = preloading.arguments[x];
	}
}

preloading (
	"images/abstractDown.gif",
	"images/architectureDown.gif",
	"images/cartDown.gif",
	"images/faunaDown.gif",
	"images/floralDown.gif",
	"images/lightboxDown.gif",
	"images/myAccountDown.gif", 
	"images/natureLandscapesDown.gif",
	"images/peopleDown.gif",
	"images/productsDown.gif",
	"images/resourcesDown.gif",
	"images/nav/services_hover.gif",
	"images/nav/products_hover.gif",
	"images/nav/galleries_hover.gif",
	"images/nav/lightbox_hover.gif",
	"images/nav/myAccount_hover.gif",
	"images/nav/cart_hover.gif",
	"images/nav/resources_hover.gif"
);
