function initPage(param1, param2) {
	var nav = document.getElementById(param1);
	if (nav) {
		var nodes = nav.getElementsByTagName(param2);
		for (var i = 0; i < nodes.length; i++) {
			nodes[i].onmouseover = function () {
				this.className += "hover";
			}
			nodes[i].onmouseout = function () {
				this.className = this.className.replace("hover", "");
			}
		}
	}
}

function buttonUp() {
        var isSSL = (("https:" == document.location.protocol) ? "https://thestartup411.nozonenet.com/" : "http://www.thestartup411.com/");
        var url = isSSL + "AAapp/AA/AA.php"
        var dr = document.referrer
        var nw = encodeURIComponent(window.location.href)
        if (dr == "") dr = '/none'
        url = url+"?ref="+dr+"&site=12&nw="+nw
        document.write(' <img border=0 height=1 width=1 src="' + url + '">');
}

/*
if (window.attachEvent && !window.opera)
	window.attachEvent("onload", initPage);
*/

