if (typeof window.addEventListener != 'undefined') { window.addEventListener("load", initStyles, false); }
else if (typeof window.attachEvent != 'undefined') { window.attachEvent("onload", initStyles); }
else {
	window.onload = function () {
		initStyles();
	}
}
function initStyles() {
/*	obj = document.getElementById("showchase");
	if (!obj || obj.tagName != "TD")
		return;
	
	if (obj.addEventListener) {
		obj.addEventListener('mouseover', function () { showProd(obj, 'show'); }, true);
		obj.addEventListener('mouseout', function () { showProd(obj, 'hide'); }, true);
	}
	if (obj.attachEvent) {
		obj.attachEvent("onmouseover", showProd(obj, "show"));
		obj.attachEvent("onmouseout", showProd(obj, "hide"));
	}*/
}
function showProd(elem, status) {
	if (status == "show") {
		elem.style.borderStyle = "solid";
		elem.style.borderWidth = 1 + "px";
		elem.style.borderColor = "#b5cee5";
	}
	if (status == "hide") {
		elem.style.borderWidth = 0 + "px";
	}
}
