var img = 1;

function changeBanner(img,t){
	x = parent.document.getElementById("BANNER");
	x.innerHTML = '<img src="images/' + img + '.jpg" alt="" width="807" height="367" border="0">'
	//clearTimeout(countDownObj);

	//startCountDown(5, 1000, chgBanner);
	timesHlder = t;
	
	parent.document.getElementById("BANNER_BTN1").src = "images/ICON1.jpg";
	parent.document.getElementById("BANNER_BTN2").src = "images/ICON2.jpg";
	parent.document.getElementById("BANNER_BTN3").src = "images/ICON3.jpg";
	parent.document.getElementById("BANNER_BTN4").src = "images/ICON4.jpg";

	parent.document.getElementById("BANNER_BTN" + t).src = "images/ICON" + t + "_HGHLGT.jpg";

}

function changeBannerLoc(img){
	x = parent.document.getElementById("BANNER");
	x.innerHTML = '<img src="images/' + img + '.jpg" alt="" width="807" height="367" border="0">'
}

function changeGalleryNext(x, selection){
	if(selection == "previous" && img != 1){
		img--;
		x = parent.document.getElementById("BANNER");
		x.src = 'gallery' + img + '.html';
	}
	if(selection == "next" && img != 22){
		img++;
		x = parent.document.getElementById("BANNER");
		x.src = 'gallery' + img + '.html';
	}
}

