jQuery(function($){
  $('#ve_add_comment, #sf_comments_all').show();
  $('#ve_add_comment, #sf_comments_all').bind('click', function(){
    var url = $(this).attr('href');
    $.get(url, {}, function(data){
      $('#ve_comments').html(data);
      // $.blockUI({ 
        // message:  ' ',
        // css: { 
          // width:    '520px',
          // height:   '380px',
          // overflow: 'auto',
          // top:      ($(window).height()-380)/2,
          // left:     ($(window).width()-520)/2
        // }
      // });
      //$('.blockMsg').html(unblockUIicon + data) 
    });    
    return false;
  });

  $('img.show_comment_preview').bind('mouseover', function(){ $(this.nextSibling).show(); });
  $('img.show_comment_preview').bind('mouseout', function(){ $(this.nextSibling).hide(); });  
});