// JavaScript Document

function hs_initpage() {
	/*alert("LOADED");*/	
}

function hs_checkpricetables() {
	var tablelst=document.getElementsByTagName("table");
	if (tablelst) {
		var tmpobj;
		for (var i = 0; i < tablelst.length ; i++) {
			tmpobj = tablelst[i];
			if (tmpobj.className == "pricetable") {
				var trlst=tmpobj.getElementsByTagName("tr");
				for (var j=0; j< trlst.length; j++) {
					if (trlst[j].className != undefined) {
						if ((j % 2) != 0) {
							trlst[j].className += " white";
						} else {
							trlst[j].className = trlst[j].className.replace(/white/,"");;
						}
					}
				}
			}
		}
	}
}