window.onload = function()
{
	var callback=function()
	{
		website=new Website();
		website.xml=resultXML.lastChild;
		website.navi=new Navigation({xml:website.xml});
		website.showHome();
	}
	loadXMLDoc(Website.HOST+'navigation.xml', callback, true);
    //Util.request(Website.HOST+'navigation.xml', {'method': 'get','type': 'xml','onComplete': callback,'contentType': 'text/xml'});
};
