$(document).ready(function() {	$('<p><strong>By Email</strong></p>').appendTo('#content');	$('<ul class="contactList"><li><a></a></li></ul>') 	.find('a').attr('href', 'mailto:info@davidlees.com') 	.html('info@davidlees.com') 	.end() 	.appendTo('#content');}); // end ready
