$(document).ready(function(){
  
  $('.comment_form form').live('submit', function(){
    $.post(location.href, $(this).serialize(), null, 'script');    
    return false;
  });
  
  // $('.voteField').fadeTo(1, 0.6);
  
  $('dl dt, dl dd').mouseover(function(){
    $(this).find('.voteField').css('display', 'block');
  });
  
  $('dl dd, dl dt').mouseout(function(){
    $(this).find('.voteField').css('display', 'none');
  });
  
});
