/*window.onfocus = setmargin;
window.onresize = setmargin; */
window.onload = rolloverInit;


var captionText = new Array("Our Sunday School enjoyed a time together at Wellington Country Park","We were at The Reading Festival to provide help and refreshment for the visitors","We were at The Reading Festival to provide help and refreshment for the visitors","A group from this church saw the Passion Play at Oberammergau...","...and then enjoyed a time of fellowship in Germany","Kenneth and Prescious dedicated their baby","Major Noel Wright introduced us to Natural Church Development","Iain, Jim and Chris climbed Ben Nevis, Scarfel Pike and Snowdon in 24 hours to raise funds for the Army","We  welcomed Lilian and Margaret as adherent members of our church","The band and songsters presented a Songs of Praise at the church in Sonning","Our first august walk took us through cornfields near Mortimer","They were married at the Army - Sue and David start a new life together - Congratulations!","Major Mark Sawyer, with his wife Andrea conducted our meetings","Our Young People's Band played at our YP anniversary ....",".... so did our Singing Company","A group of bandsmen played in the shopping centre.... (click for larger image)","...as we distributed &quot;The War Cry&quot;",
"Our walking fellowship called at Ashampstead church before going to Upper Basildon for a barbeque");


var thisAd = 0;
var thisCol = 0;
function rolloverInit() {
	for (var i=0; i<document.links.length; i++) {
		var linkObj =  document.links[i];
		if (linkObj.id) {
			var imgObj = document.getElementById(linkObj.id + "Img");
			if (imgObj) {
				setupRollover(linkObj,imgObj);
			}
		}
	}
flash();
initAll();
initBannerLink();
/*setmargin();*/
}

/*function setmargin() {
         var leftmargin = (screen.availWidth - 800)/2
         if (window.innerWidth >20) {leftmargin = (window.innerWidth - 800)/2}
         document.body.style.left = leftmargin+"px";
}
*/
function setupRollover(thisLink,thisImage) {
	thisLink.imgToChange = thisImage;
	thisLink.onmouseout = function() {
		this.imgToChange.src = this.outImage.src;
	}
	thisLink.onmouseover = function() {
		this.imgToChange.src = this.overImage.src;
	}
	
	thisLink.outImage = new Image();
	thisLink.outImage.src = thisImage.src;

	thisLink.overImage = new Image();
	thisLink.overImage.src = "web_files/iconover.gif";
}




function initAll() {
	var allLinks = document.getElementsByTagName("a");
	
	for (var i=0; i<allLinks.length; i++) {
		if (allLinks[i].className == "menuLink") {
			allLinks[i].onmouseover = toggleMenu;
			allLinks[i].onclick = function() {
				return false;
			}
		}
	}
}

function toggleMenu() {
	var stopMenu = this.href.lastIndexOf("/");
	var startMenu = stopMenu-5;
	var thisMenuName = this.href.substring(startMenu,stopMenu);

	document.getElementById(thisMenuName).style.display = "block";

	this.parentNode.className = thisMenuName;
	this.parentNode.onmouseout = function() {
		document.getElementById(this.className).style.display = "none";
	}
	this.parentNode.onmouseover = function() {
		document.getElementById(this.className).style.display = "block";
	}
}

function initBannerLink() {
	if (document.getElementById("report").parentNode.tagName == "A") {
		document.getElementById("report").parentNode.onclick = newLocation;
	}
	
	rotate();
}


function newLocation() {
	var adURL = new Array("news10/jly10.html","news10/aug10.html#festival","news10/aug10.html#festival","news10/jly10.html#oberammergau","news10/jly10.html#oberammergau","news10/jly10.html#dedication","news10/jly10.html#ncd","news10/jun10.html#peak","news10/jun10.html#adherents","news10/jly10.html#sonning","news10/aug10.html#mortimer","news10/jun10.html#wedding","news10/jun10.html#sawyer","news10/jly10.html#anniv","news10/jly10.html#anniv","news10/aug10.html#warcry","news10/aug10.html#warcry",
        "news10/aug10.html#ashampstead");
	document.location.href = adURL[thisAd];
	return false;
}

function rotate() {
	var adImages = new Array("news10/yp outing.jpg","news10/festival aug10a.jpg","news10/festival aug10.jpg","news10/oberammergau2a.jpg","news10/oberammergau1a.jpg","news10/william jly10.jpg","news10/ncd july10.jpg","news10/peak8.jpg","news10/adherents june 10.jpg","news10/sonning jly10.jpg","news10/festival aug10a.jpg","news10/festival aug10.jpg","news10/walk at mortimer aug10.jpg","news10/sue and david.jpg","news10/sawyer jun10.jpg","news10/ypb july10.jpg","news10/sc july10.jpg","news10/small band.jpg","news10/war cry.jpg",
        "news10/ashampstead.jpg"
        );

	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("report").src = adImages[thisAd];
	document.getElementById("caption").innerHTML = captionText[thisAd];


	setTimeout(rotate, 4 * 1000);
}

function flash() {
        var col = new Array("#f31", "#bb0", "#13f");
	thisCol++;
	if (thisCol == col.length) {
		thisCol = 0;
	}
	document.getElementById("flash").style.backgroundColor = col[thisCol];


	setTimeout(flash, 1000);
}
