generic = function() {
	h = document.getElementById('sitemap'); h.style.left = "-999em";
}

//setup onload function
if(typeof window.addEventListener != 'undefined') {
	window.addEventListener('load', generic, false); //.. gecko, safari, konqueror and standard
}
else if(typeof document.addEventListener != 'undefined') {
	document.addEventListener('load', generic, false); //.. opera 7
}
else if(typeof window.attachEvent != 'undefined') {
	window.attachEvent('onload', generic); //.. win/ie
}
//** remove this condition to degrade older browsers
else {
	//.. mac/ie5 and anything else that gets this far
	if(typeof window.onload == 'function') { //if there's an existing onload function
		var existing = onload; //store it
		window.onload = function() { //add new onload handler
			existing(); //call existing onload function
			generic(); //call generic onload function
		};
	}
	else {
		window.onload = generic; //setup onload function
	}
}
