//  Begin Preload Defs

var ZTInvestments = new Image();
ZTInvestments.src = "/WebSite/Images/Navigation/ZTInvestments_on.gif";

var ZTFinancial = new Image();
ZTFinancial.src = "/WebSite/Images/Navigation/ZTFinancialNetwork_on.gif";

var ZTConsulting = new Image();
ZTConsulting.src = "/WebSite/Images/Navigation/ZTConsulting_on.gif";

var ZTProperties = new Image();
ZTProperties.src = "/WebSite/Images/Navigation/ZTPropertiesUSA_on.gif";

// End Preload Defs


//Begin Fix Image script for active pages and rollovers
window.onload = fixAllImages;

function navOver(img) {
	img.src = '/WebSite/Images/Navigation/' + img.parentNode.getAttribute("srcover");
}

function navOut(img) {
	if(img.parentNode.className == "ActiveLink") {
		img.src = '/WebSite/Images/Navigation/' + img.parentNode.getAttribute("srcover");
	} else {
		if(img.src != '/WebSite/Images/Navigation/' + img.parentNode.getAttribute("srcout")) {
			img.src = '/WebSite/Images/Navigation/' + img.parentNode.getAttribute("srcout");
		}
	}

}

function fixAllImages() {
	for(var i=0; i < document.images.length; i ++) {
		fixImage(document.images[i]);
	}
}

function fixImage(img) {  	
	if(img.parentNode) {
		if(img.parentNode.className == "ActiveLink") {
			img.src = '/WebSite/Images/Navigation/' + img.parentNode.getAttribute("srcover");
		}
	}
}

//End Fix Image script for active pages and rollovers
