
$j(function() {
	
	$j('.panelUrl').hover(
		function(){ $j(this).parent().find('h2').find('a').css("text-decoration","underline");},
		function(){ $j(this).parent().find('h2').find('a').css("text-decoration","none");}			
	)
	
	});