window.onload = function() {
	myHeight = new fx.Height('nav', {duration: 400});
	myHeight.hide();
}
function create_menu(basepath)
{
	var base = (basepath == 'null') ? '' : basepath;
 
	document.write(
		'<table cellpadding="0" cellspaceing="0" border="0" style="width:98%"><tr>' +
		'<td class="td" valign="top">' +
 		
		'<h3>Main Site</h3>' +
		'<ul>' +
		'<li><a href="'+base+'home">Tony Person :: Home</a></li>' +	
		'<li><a href="'+base+'code">Code </a></li>' +
		'<li><a href="'+base+'art4art">Art4art</a></li>' +
		'<li><a href="'+base+'projects">Projects </a></li>' +
		'<li><a href="'+base+'contact">Contact </a></li>' +
		'</ul>' +	
 
 		'</td><td class="td_sep" valign="top">' +
 
		'<h3>Code Section</h3>' +
		'<ul>' +
			'<li><a href="'+base+'code">Code Home</a></li>' +
			'<li><a href="'+base+'code/json">Json</a></li>' +
			'<li><a href="'+base+'code/xml2json">Xml 2 json</a></li>' +
			'<li><a href="'+base+'code/xhtml">xhtml</a></li>' +
			'<li><a href="'+base+'code/twitter">twitter</a></li>' +
			'<li><a href="'+base+'code/fizzbuzz">Fizz Buzz</a></li>' +
		'</ul>' +	

		'</td><td class="td_sep" valign="top">' +

		'<h3>Art4art Section</h3>' +
		'<ul>' +
			'<li><a href="'+base+'art4art">Art4art Home</a></li>' +
		'</ul>' +	

		'</td></tr></table>');
}
