// JavaScript Document
//jQuery.noConflict();
jQuery(document).ready(function($) {
  jQuery('p:has(img)').addClass('pimg');

});


//mailme

//jQuery.noConflict();

jQuery(function($){
var spt = jQuery('span.mailme');
var at = / at /;
var dot = / dot /g;
var addr = jQuery(spt).text().replace(at,"@").replace(dot,".");
jQuery(spt).after('<a href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
.hover(function(){window.status="Send a letter!";}, function(){window.status="";});
jQuery(spt).remove();
});
