	var QuoteItemsCount = 10;
	var QuoteItemsIdx = 0;

	function QuoteNavigation(pValIdxChg) {
		// ** this will expect pValIdxChg to be 1, or -1

		// ** Determine next Index to show
		if (pValIdxChg == -1 && QuoteItemsIdx <= 1) {
			QuoteItemsIdx = QuoteItemsCount;
		} else if (pValIdxChg ==1 && QuoteItemsIdx == QuoteItemsCount) {
			QuoteItemsIdx = 1;
		} else {
			QuoteItemsIdx = QuoteItemsIdx + pValIdxChg;
		}

		
		// ** Set the Counter text
		// ** QuoteNavCounter
		var QuoteNavCount = document.getElementById("QuoteNavCounter");
		QuoteNavCount.innerHTML = QuoteItemsIdx + "&nbsp; of &nbsp;" + QuoteItemsCount;
		SetQuote();
	}
	function SetQuote() {
		//  * This will set the values in the iframe
		var QuoteHtml = "images/quotes/quote" + QuoteItemsIdx + ".html";
		var QuoteHtmlField = document.getElementById("QuoteNavText");

		if (QuoteHtmlField) {
			// * Change src of this field..it is an iFrame
			QuoteHtmlField.src = QuoteHtml;
		}

		var QuoteImg = "images/quotes/pic" + QuoteItemsIdx + ".jpg";
		var QuoteImgField = document.getElementById("QuoteNavImg");

		if (QuoteImgField) {
			QuoteImgField.src = QuoteImg;
		}

	}
  QuoteNavigation(1);
