fireOn = Window.ie ? 'load' : 'domready';

window.addEvent(fireOn, function()
{
	
	// Make cells clickable
	$$('table.selectTable').addEvent('click', function(e){
		var target = new Event(e).target;
		if(target.tagName == 'TD'){
			var row = target.parentNode
			if(row.id) window.location = '/' + row.id.replace(/-/g, '/');
		}
	});
	
	// Add hover effect to rows
	$$('table.selectTable').addEvent('mouseover', function(e){
		var target = new Event(e).target;
		if(target.tagName == 'TD'){
			var row = target.parentNode;
			if(row.id) row.style.cursor = 'pointer';
		}
	});
		
});
