$(function(){
  
  $('a[rel=modalbox]').click(function(){
    $('#modalBox').modal({
      overlayId:  'modalOverlay',
      opacity:    60,
      close:      true,
      closeClass: 'modalClose'
    });
    return false;
  });
  
  $('a[rel=modalbox_virul]').click(function(){
    $('#modalBox_virul').modal({
      overlayId:  'modalOverlay',
      opacity:    60,
      close:      true,
      closeClass: 'modalClose'
    });
    return false;
  });
  
});