function writeLink() {
	// check to see if we are in a DOM friend environment
	if (!document.getElementById) return false;
	
	// quick n' dirty -> this grabs the link inside the logo div
	var logo = document.getElementById('logo').firstChild.lastChild;
	logo.setAttribute("href", 'http://www.tebh.org');
	
}

addLoadEvent(writeLink);
