// 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("2009 Champions. From the left Dick Ferguson, Tom Galles, Lyle Miller, and Bob McAllister", "2nd place team of Dave Spinks, Dyane Loucks, Brandon Ketchum, Rick Faller and team mascot Luke", "Dave Cantwell, Chalres Gilbreath, Tom McCoy, Keith Cunnington, Mike Canavan and Brandon Ketchum", "Big John Benson, Don Carver, Benny Lentz and Ralp putter White and Brandon Ketchum.", "Nick Masellis and Captain Mike Forsyth collect winnings from The President.", "2009 Chipping Champ Dave Spinks","Putting Champion 2009 Tom O.F. McCoy with President Brandon Ketchum","Don Fox competes in puttig contest.","Everyone needs a hug","Left Brandon Ketchum presents the Dead Last award to Earl Poytress and team captain Dennis Ferguson.","Don Morris having fun in putting contest.","Charles and Rick measure the distance.","Duyane Loucks zeros in. ","Gallery watches chipping contest.","Ralph 'putter'  White looks it over.","President Ketchum points out the way!","Craig Burkett can not believe it...","Jim McClure putts it close.","Chuck Earhart can't believe his putt.")


							
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/tuesdayfinal2009/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;	
}




