function loadProductInformation() {
	if (!total) {
		var total = 0;
		}
	if (navigator.appName != "Netscape") {
		// Code here for Internet Explorer 
		for (var i = 1; i <= total; i++) {
			document.getElementById(i.toString()).attachEvent("onmouseover", identifyIEOverProduct);
			document.getElementById(i.toString()).attachEvent("onmouseout", identifyIEOutProduct);
		}
	}
	else if (navigator.appName == "Netscape") {
		// Code hear for Firefox or Safari
		for (var i = 1; i <= total; i++) {
			document.getElementById(i.toString()).addEventListener("mouseover", identifySFOverProduct , true);
			document.getElementById(i.toString()).addEventListener("mouseout", identifySFOutProduct , false);
		}
	}
}
function identifyIEOverProduct(evt) {
document.getElementById("reveal" + evt.srcElement.id).style.visibility = "visible";

}
function identifySFOverProduct(evt) {
document.getElementById("reveal" + evt.target.id).style.visibility = "visible";
}
function identifyIEOutProduct(evt) {
document.getElementById("reveal" + evt.srcElement.id).style.visibility = "hidden";
}
function identifySFOutProduct(evt) {
document.getElementById("reveal" + evt.target.id).style.visibility = "hidden";
}
