if (window.attachEvent) {
	window.attachEvent("onload", function() {
		var as = document.getElementsByTagName("a");
		if (as) {
			for (var i = 0; i < as.length; i++) {
				if (as[i].className && as[i].className.indexOf("rollover") > -1) {
					as[i].onmouseover = function() {
						this.className += " hover";
					}
					as[i].onmouseout = function() {
						this.className = this.className.replace(new RegExp(" hover\\b"), "");
					}
				}
			}
		}
	});
}
