//  Begin Preload Defs

var ChurchInformation = new Image();
ChurchInformation.src = "/WebSite/Images/Navigation/ChurchInformation_on.jpg";

var WhatsHappening = new Image();
WhatsHappening.src = "/WebSite/Images/Navigation/WhatsHappening_on.jpg";

var Programs = new Image();
Programs.src = "/WebSite/Images/Navigation/Programs_on.jpg";

var LifeGroups = new Image();
LifeGroups.src = "/WebSite/Images/Navigation/LifeGroups_on.jpg";

var Resources = new Image();
Resources.src = "/WebSite/Images/Navigation/Resources_on.jpg";

var NewsletterSignup = new Image();
NewsletterSignup.src = "/WebSite/Images/Navigation/NewsletterSignup_on.jpg";

// 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
