// JavaScript Document

$(document).ready(function() {
   $(".address").each(function() {
     $(this).append( "@wfu.edu");
     var address = $(this).html();
		 $(this).wrap('<a href="mailto:'+address+'"></a>');
//		 alert($(this).html);
//     $(this).append( " BAM! " + i );
   });
 });