$(function(){
	$('.line_cat_links td').bind('mouseover', function(e){
		$(this).children('a').css({'color':'#92c200','text-decoration':'none'});
	}).bind('mouseleave', function(e){
		$('.line_cat_links a').css({'color':'#000','text-decoration':'underline'});
	});
});
