/**
 * 
 */

$(document).ready(function(){
	
		$('tr #threadRow').hover(function(){
			$(this).children().addClass('headertr');
			$(this).children("#threadTitle").css("cursor","pointer");
		},function(){
			$(this).children().removeClass('headertr');
		});
		
		$("td #threadTitle").click(function(){
			location.href=$(this).attr("url");
		});	
});
