jQuery(document).ready( function () {
   emailReplace(); 
   
    jQuery('.fadeThis').append('<span class="hover"></span>').each(function () {
     var $span = jQuery('> span.hover', this).css('opacity', 0);
     jQuery(this).hover(function () {
       $span.stop().fadeTo(500, 1);
     }, function () {
       $span.stop().fadeTo(500, 0);
     });
   });
   
   
});
