/* -- this will be loaded by every page in the forums -- */

// converts the first TD to a link
function convertTDtoLink(theID){
	var columns, link;
	
	columns = $$('table.forum .tdlink');
	
	columns.each(function (el) {
		link = el.getElementsByTagName("a");

		if(link.length > 0){
			el.onclick = new Function("document.location.href='" + link[0].href + "'");
			el.className+=el.className?' linked':'linked';
			el.onmouseover=function() { this.className+=" hover"; }
			el.onmouseout=function() { this.className=this.className.replace(new RegExp(" hover\\b"), ""); }			
		}		
	});			
}
window.addEvent('domready', convertTDtoLink);