	//this function runs when the page is loaded
	function addStatusRollovers(){
		//this gets all links in the page and sticks them in an array
		var aLinks = document.getElementsByTagName("a");
		//this loops through all links
		for(i = 0; i<aLinks.length; i++){
			//this checks if the browser supports DOM, e.g. all but IE
			if(aLinks[i].addEventListener){
				//this adds the mouseover event to all links
				aLinks[i].onmouseover=function(){window.status=""; return true;}
			} else {
				//this adds the mouseover event to all links in IE
				aLinks[i].attachEvent("onmouseover",function(){status = ""; return true;});
			}
		}
	}

