$(document).ready(function(){
	$('a.jt', this).css('color', '#e4f7fb');
	$('a.jt', this).css('font-weight', 'bold');
    $('a.jt:eq(0)').cluetip({
    cluetipClass: 'jtip', 
    arrows: true, 
    dropShadow: false,
    hoverIntent: false,
    sticky: true,
    mouseOutClose: true,
    closePosition: 'title',
    closeText: '<img src="../cnam_php/design/close.gif" alt="close" />'
  });
});
	
$(document).ready(function(){
	$('a.jt', this).mouseover(function(){ 
      if($(this).css('text-decoration')!='underline')$(this).css('text-decoration','underline');
	   else $(this).css('text-decoration','');
  });
});
