// Onload When Document Ready
$j(document).ready(function() {
  $j(document).pngFix();
  $j('a[rel=external]').attr('target', '_blank');
  $j('.equalize').equalHeights('true');
  $j('#friends-list').columnize({ columns : 2 });
  $j("#conPhone").mask("(999) 999-9999",{placeholder:" "});

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



});