// active click through on flux comment count
$j(function(){
  
  $j('#posts .post .post_footer .commentCount .txtLabel').live('mouseover', function(){
    $j(this).css({
      'text-decoration':'underline',
      'cursor' : 'pointer'
    });
  });
  
  $j('#posts .post .post_footer .commentCount .txtLabel').live('mouseout', function(){
    $j(this).css({
      'text-decoration':'none',
      'cursor' : 'auto'
    });
  });
  
  $j('#posts .post .post_footer .commentCount .txtLabel').live('click', function(){
    var permalink = $j(this).closest('.post_footer').find('.btn-permalink a');
    
    window.location.href = permalink.attr('href') + '#comments';
  });
  
});