// Java Script file for NHCC

// Date for footers
var mydate=new Date();
var year=mydate.getYear();

// rollovers
window.onload = rollovers;

function rollovers(){
for (var i=0; i<document.images.length; i++) {
		if (document.images[i].parentNode.className == "rollover-center") {
			setupRollover(document.images[i]);}	}

function setupRollover(thisImage) {
	thisImage.outImage = new Image();
	thisImage.outImage.src = thisImage.src;
	thisImage.onmouseout = rollOut;

	thisImage.overImage = new Image();
	thisImage.overImage.src = "photos/" + thisImage.id + "_on.jpg";
	thisImage.onmouseover = rollOver;}

function rollOver() {this.src = this.overImage.src;}
function rollOut() {this.src = this.outImage.src;}

} // end of window.onload			

//alert popups
function info(number){
var message = new Array(2)
		message[1] = "Energize is professionally produced Christian teaching material.";
		message[2] = "The Alpha Course is a highly successful national course that teaches the basics of Christianity. Youth Alpha is an adapted version aimed at young people so they too can gain a firm foundation in the faith.";
alert(message[number]);}
