<!--
	
	myPix = new Array(
	
	
	"../images/front9.jpg",
	"../images/hole01.JPG",
	"../images/hole02.JPG",
	"../images/hole03.JPG",
	"../images/hole04.JPG",
	"../images/hole05.JPG",
	"../images/hole06.JPG",
	"../images/hole07.JPG",
	"../images/hole08.JPG",
	"../images/hole09.JPG",
	"../images/back9.jpg",
	"../images/hole10.JPG",
	"../images/hole11.JPG",
	"../images/hole12.JPG",
	"../images/hole13.JPG",
	"../images/hole14.JPG",
	"../images/hole15.JPG",
	"../images/hole16.jpg",
	"../images/hole17.jpg",
	"../images/hole18.JPG"
	
	
	
	)
	
	mycaption = new Array(
	
	
	
	"The Front Nine",
	"The First Hole",
	"The Second Hole",
	"The Third Hole",
	"The Fourth Hole",
	"The Fifth Hole",
	"The Sixth Hole",
	"The Seventh Hole",
	"The Eighth Hole",
	"The Ninth Hole",
	"The Back Nine",
	"The Tenth Hole",
	"The Eleventh Hole",
	"The Twelfth Hole",
	"The Thirteenth Hole",
	"The Fourteenth Hole",
	"The Fifteenth Hole",
	"The Sixteenth Hole",
	"The Seventeenth Hole",
	"The Eighteenth Hole"
	
	
	
	
	)
	
	
	mycaption2 = new Array(
	
	
	"",
	"The first hole is a 324 yard Par 4 that doglegs slightly from right to left. The green is guarded by a creek located approximately 260 yards from the tee, and three sand bunkers and a grass bunker protect a long thin putting surface.",
	"The second hole is a 377 yard par 4. Two prominent features dominate this hole. The first feature is a deep creek approximately 190 yards from the tee. A drive over this hazard should favor the left side of the fairway in order to avoid a young maple tree located on the right hand side of the fairway. This tree will increasingly frustrate players as it develops.",
	"Measuring  546 yards, the third hole is one the most difficult driving holes on the course. Players must drive the ball approximately 220 yards over a creek to a fairway surrounded by woods. Few players can 'get home in two' on this par 5,  and are happy to reach the elevated and well bunkered green in three shots.",
	"The fourth hole is a 350 yard par 4. The hole doglegs sharply from right to left and favors a long draw from the tee. The green is protected by steep mounds and a large bunker on the left side, but after the difficult third hole, most consider this hole an opportunity for par.",
	"Perhaps the best putting surface at Willow Brook, the green on the par 3 fifth hole is over 6500 square feet of undulating turf. The length of this par 3 is nearly 200 yards and a pin placement in the right corner of the green is a true test of golf.",
	"The key to the Par 4 sixth hole is an accurate approach shot. Measuring 400 yards from the blue tees, most players choose to protect against the creek and fairway bunker on the right side of the fairway. As a result, many players are left with a 150-170 yard second shot to a small, undulated green.",
	"The 169 yard par 3 seventh hole features a green that is deceptively difficult to hit. The 'postage stamp' green is less than 3500 square feet, and most shots land in the large greenside bunkers.",
	"TThe par 5 eighth hole is the only true birdie hole on the course. Measuring 490 yards from the blue tees, long ball hitters can reach this green in two shots. A fairway bunker comes into play on the approach shot however, and players must protect against the creek behind the right greenside bunker.",
	"The picturesque ninth hole brings players back to the clubhouse for some badly needed refreshment. An accurate drive on this 378 yard Par 4 will avoid the trees on both sides of the ninth fairway, but the player needs to guard against the lake immediately beyond the green embankment.",
	"",
	"The tenth hole is a 378 yard par 4 that dog-legs from right to left. The preferred  drive will land on the right side of the fairway, providing  the best angle for an approach shot to the long thin green. Yardage will vary significantly depending on pin placement, since the putting surface is approximately 115 feet in length.",
	"There is nothing deceptive about the 399 yard Par 4 eleventh hole at Willow Brook. This hole plays dead straight from tee to green and it is a perfect opportunity to 'grip it and rip it'",
	"The twelfth hole is a 160 yard par 3. The nearly circular putting surface is guarded by bunkers on both sides of the approach, but accurate iron players hit this green with consistency",
	"The thirteenth hole is a classic double dogleg par 5. The best approach to this 502 yard par 5 is to follow the fairway. 'Cutting the corner' on this hole will punish the player with an approach shot over a huge greenside bunker to a downhill green.",
	"The beauty of this hole is best appreciated from the blue tees. A steep ledge dominates the center of the green and pin placements are typically located at the front or back of the large putting surface. ",
	"The 530 yard par 5 fifteenth hole is one of the most challenging holes on the course. From the tee, the player is surrounded by woods and creeks, and only a long straight drive will reach the fairway. An accurate second shot will position the player approximately 100 yards from the green, but a precise approach shot will be necessary to hit this tiny sloping green.",
	"After the difficult fifteenth hole, the 362 yard par 4 sixteenth presents a relatively open driving hole. Trees line the fairway and out-of-bounds borders the left rough, but most players find this hole straightforward and enjoyable.",
	"Three large fairway bunkers dominate the fairway on the par 4 seventeenth  hole. These bunkers provide a 'risk-reward' opportunity from the tee.  A straight 235 yard drive will reward the player with a short approach shot, while 'laying up' will protect against the difficult fairway bunker shot. Regardless, players will need to avoid the small greenside bunker that is situated at the center of the approach.",
	"The eighteenth hole at Willow Brook is one of the finest finishing holes in South Jersey. The 418 yard, dog-leg par 4 demands an accurately placed and lengthy drive from the tee, A wooded area guards the left side of the fairway, while a creek runs parallel to the right rough. A perfect drive rewards the player with a scenic approach shot over a lake lined with boulders. What a great test of nerves for golfers deciding a close match."

	
	
	
	
	)
	
	
	
	thisPic = -1
	
	imgCt = myPix.length - 1
	
	function chgSlide(direction) {
		if (document.images) {
			thisPic = thisPic + direction
			if (thisPic > imgCt) {
				thisPic = 0
			}
			if (thisPic < 0) {
				thisPic = imgCt
			}
			
			document.myPicture.src=myPix[thisPic]
			document.caption.info.value = mycaption[thisPic]
			document.caption.info2.value = mycaption2[thisPic]
		}
	}
	
	
	//-->


