$(document).ready(function() {
	//wrap all links with fn class within a vcard div
	$("a.fn").wrap("<div class=\"vcard\"></div>");
	$("div.vcard").append("<div class=\"adr\"><div class=\"street-address\">1111 N. Glenstone</div><span class=\"locality\">Springfield</span>, <span class=\"region\">MO</span> <span class=\"postal-code\">65802</span> </div> <div class=\"tel\"><span class=\"type\">work</span>: <span class=\"value\">417-865-2815</span></div>");
});
