// JavaScript Document slideshow 
addOnload(initAll);
addOnload(initMenu);


function addOnload(newFunction) {
	 var oldOnload = window.onload;
	 
	 if (typeof oldOnload == "function") {
	window.onload = function() {
		if (oldOnload) {
			oldOnload();
		} 
		newFunction();
		}
	}
	 else {
		 window.onload = newFunction; 
	 }
}




var currImg = 0;
var captionText = new Array("Getting ready for the big day", "Playing around before breakfast", "Ahhhh BREAKFAST!", "Elmer Winfree and Benny Lentz ready for some food", "Tom Baird and Duyane Loucks look a like at Fall River", "Ralph  White and his twin brother enjoy Fall River","Chip, Chip, Chip and the beat goes on at Fall River","Pat Bott trys to teach Jim Reyes which end of the putter to grip.","Butch Delevati taking in some shade at Fall River","J.R. Myers a happy camper at Fall River","On the 1st tee Marv Wittner, Jim Dickerson, Jim Reyes, and Don Carver.","Patrick Bott and Brandon Ketchum waiting their Turn on # 1","Can you guess what hole this is?","Tom Baird shows happiness as the beverage cart approaches","Galles and McAllister in line at Fall River","Fall River club house from tee #1","9th green at Fall River","Marvyn Wittner just happy to be at Fall River","Great view off the 17th tee","Finishing up on # 18","The Grand Poopah Dick Ferguson","Adding up the scores at Fall River","Bob McAllister collects skins winnings","Captain Mike Forsyth collects his winnings","Craig Burkett gets his skins winnings","Putter White collects his winnings at Fall River","Dennis Ferguson collects skins winnings","Tournament Chairman Charles Gilbreath we all thank you for your hard work!")


							
function initAll(){
	document.getElementById("imgText").innerHTML = captionText[0];
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
}
function processPrevious() {
	newSlide(-1);	
}
function processNext() {
	newSlide(1);	
}

function newSlide(direction){
	var imgCt = captionText.length;
	
	currImg = currImg + direction;
	if (currImg <0) {
		currImg = imgCt-1;	
	}
	if (currImg == imgCt) {
		currImg = 0;	
	}
	document.getElementById("slideshow").src = "images Churn Creek Golf Club/FallRiver2009/slide" + currImg +".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}







function initMenu() {
	var allLinks = document.getElementsByTagName("a");
	
	
	for (var i=0;i<allLinks.length; i++) {
		if (allLinks[i].className.indexOf("menuLink") > -1) {
			allLinks[i].onclick = retFalse;	
			allLinks[i].onmouseover = toggleMenu;
			 
		}
	}
}

function toggleMenu() {
	var startMenu = this.href.lastIndexOf("/")+1;
	var stopMenu = this.href.lastIndexOf(".");
	var thisMenuName = this.href.substring(startMenu,stopMenu);
	
	document.getElementById(thisMenuName).style.display = "block";
	
	this.parentNode.className = thisMenuName;
	this.parentNode.onmouseout = toggleDivOff;
	this.parentNode.onmouseover = toggleDivon;
}

function toggleDivon() {
	document.getElementById(this.className).style.display = "block";	
}

function toggleDivOff() {
	document.getElementById(this.className).style.display = "none";	
}

function retFalse() {
	return false;	
}




