window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"<h3>Quality Listings.</h3><p>Premium dental practices for sale in  California.</p>",
	"<h3>San Diego County.</h3><p>Ortho practice in San Diego beach town. 37 years of goodwill, Doctor retiring.<br />1033</p>",
	"<h3>South Orange County.</h3><p>We are looking for a buyer for a cash fee for service practice that has a thirty-six year history of quality crown, bridge and esthetic dentistry in South Orange County.  The practice will collect over $1.3 million this year with profit over 500K.  The seller is moving out of Orange County.  The suite is approximately 2,160 sq ft, paperless, well located and gorgeous. The buyer will acquire much goodwill, a beautiful suite, a well trained team and a decade's long reputation for high quality and Exemplary personal care.<br />This rare opportunity is being offered at $1.2 million.<br />1035</p>"
)

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 = "listings/slideImg" + currImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}

						