
function rollOver(imageName,over) {
    if (over != false) { document.images[imageName].src = "/corporate/images/" + imageName + "_on.gif" }
	else { document.images[imageName].src = "/corporate/images/" + imageName + ".gif" }
}

var whereAmI = document.location.pathname

var topSections = new Array (
"Main",
"Company",
"Projects",
"Products",
"Cart",
"Search",
"Contact"
)

var topLinks = new Array (
"/corporate/default.htm",
"/corporate/company/company.htm",
"/corporate/projects/projects.htm",
"/corporate/products/products.htm",
"/corporate/cart.asp",
"/corporate/search.htm",
"/corporate/contact.htm"
)

var topImages = new Array (
"default",
"company",
"projects",
"products",
"cart",
"search",
"contact"
)

var topImageSrcOn = new Array ();
	for (i in topImages) {
        topImageSrcOn[i] = new Image();
        topImageSrcOn[i].src = "/corporate/images/" + topImages[i] + "_on.gif";
	}

var topImageSrcOff = new Array ();
	for (j in topImages) {
        topImageSrcOff[j] = new Image();
        topImageSrcOff[j].src = "/corporate/images/" + topImages[j] + ".gif";
	}
