(function($) {
	
	$(document).ready(function() {
		
		$('a.contactus, a.contactus_replacehtml').each(function() {
			var d = 'jollywisemedia.co.uk';
			var href = $(this).attr('href');
			var e = href.substr(href.indexOf('#')+1);			
			var addr = e + '@' + d;
			
			if($(this).attr('class') == 'contactus_replacehtml') {
				$(this).attr('href', 'mailto:'+addr).html(addr);		
			}else {
				$(this).attr('href', 'mailto:'+addr);		
			}
			
		});
		
	});
	
})(jQuery);
