// JavaScript Document

var aProducts = new Array();
var sSection = "";

function toggleProduct(iNum) {
	var sState = aProducts[iNum];
	if(sState == "hidden") {
		document.getElementById("product" + iNum).style.display = 'block';
		document.getElementById("productbutton" + iNum).src = '/Files/acph/resources/img/microsite/bn_microsite_' + sSection + '_open.jpg';
		aProducts[iNum] = "shown";
	}
	else {
		document.getElementById("product" + iNum).style.display = 'none';
		document.getElementById("productbutton" + iNum).src = '/Files/acph/resources/img/microsite/bn_microsite_' + sSection + '_closed.jpg';
		aProducts[iNum] = "hidden";
	}
	
}

function initProduct(iNum) {
	aProducts[iNum] = "hidden";
	document.getElementById("product" + iNum).style.display = 'none';
}

function setSection(sSect) {
	sSection = sSect;	
}