jQuery(function($){
  $('#ve_add_comment, #sf_comments_all').show();
  $('#ve_add_comment, #sf_comments_all').live('click', function(){
//    var bheight = $(this).attr('id') == 've_add_comment' ? '400px' : '500px';
    var bheight = '520px';
    var url = $(this).attr('href');
    $.get(url, {}, function(data){ 
      $.blockUI({ 
        message:  ' ',
        css: { 
          width:    '520px',
          height:   bheight,
          overflow: 'auto',
          top:      '50px',
          left:     ($('body').width()-520)/2
        }
      });
      $('.blockMsg').html(unblockUIicon + data) 
    });    
    return false;
  });

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