$(document).ready(
	function()
	{
		// round the corners
		$("#head").corner();
		$("#foot").corner();

		// load the email addresses
		$.get("mailtoinfo.xml",function(xml){
	    var text = $("auckland",xml).text();
	    $("div#akd-email").html("<a href='mailto:"+text+"?subject=Website Enquiry'>"+text+"</a>");

	    text = $("queenstown",xml).text();
	    $("div#zqn-email").html("<a href='mailto:"+text+"?subject=Website Enquiry'>"+text+"</a>");

	    text = $("wellington",xml).text();
	    $("div#wgn-email").html("<a href='mailto:"+text+"?subject=Website Enquiry'>"+text+"</a>");

	    text = $("christchurch",xml).text();
	    $("div#chc-email").html("<a href='mailto:"+text+"?subject=Website Enquiry'>"+text+"</a>");

	    text = $("toll-free",xml).text();
	    $("div#toll-free").html(text);
	    });


	}
);

