/* Author: 


/**
 * Write an email address to the screen. Helps so that bots can't parse email addresses from the site.
 *
 *     myEmail("dwright", "dwright", "swbts.edu");
 *
 * @param string
 * @param string
 * @param string
 */
function myEmail(contact, email, emailHost) {
  document.write("<a href=" + "&#109a&#105l" + "&#116&#111:" + email + "@" + emailHost+ ">" + contact+"</a>");
}

function writeEmail(contact, email, emailHost) {
  document.write("<a href=" + "&#109a&#105l" + "&#116&#111:" + email + "@" + emailHost+ ">" + contact + "@" + emailHost+"</a>");
}


/*$('.inner p:contains(Pineapples)').each(function(){
  $(this).text(
    $(this).text().replace('Pineapples','<span class=\'fancy\'>Pineapples</span>')
  );
});

$('.inner p a:contains(Pineapples)').each(function(){
  $(this).html(
    $(this).html().replace('Pineapples','<span class=\'fancy\'>Pineapples</span>')
  );
});

$('.inner p:contains(Pineapples)').each(function(){
  $(this).html(
    $(this).html().replace('Pineapples','<span class=\'fancy\'>Pineapples</span>')
  );
});*/

$('p:contains( - )').each(function(){
  $(this).html(
    $(this).html().replace(' - ','&mdash;')
  );
});



























