$(function() {
  $(document).pngFix();
  $('a[rel=external]').attr('target', '_blank');
  $('.equalize').equalHeights('true');
  $('.two-columns').columnize({ columns : 2 });
  $(".phone-mask").mask("(999) 999-9999",{placeholder:" "});

  // Pull quotes used on About 
  $('span.pullquote').each(function() {
    text = $(this).text();
    text=text.replace( /\((.*)\)/gi, " " );
    if ($(this).is(".right")) 
      $(this).parent().before('<blockquote class="pullquote right"><p>&#8220;'+ text +'&#8221</p></blockquote>');
    else
      $(this).parent().before('<blockquote class="pullquote"><p>&#8220;'+ text +'&#8221</p></blockquote>');
  });

  if ($('#gallery a,.videobox').length){
    $.getScript('/javascript/lib/lightbox.js');
  }

});
