function drawHeader(root_direction)
{
	var code="";
	var divOutput = document.getElementById("pageTop");
	divOutput.innerHTML="";

	code+="<table height width=100% height='100px' cellspacing=0 cellpadding=0 class='rtable'>";
	code+="<tr><td class='t_edge' width='100px'>"
	code+="<a href='"+root_direction+"index.htm' class='toplink'>Home</a>&nbsp</td>";
	code+="<td class='t_edge'><img src='"+root_direction+"title.jpg'/></td>";
	code+="<td class='t_edge'>";
	//Add a series of links to different bits of the map !
	code+="<small>Freelance Artist & Illustrator</small><br/>";
	code+="<a href='"+root_direction+"about/about.htm' class='toplink'>About</a>&nbsp";
	//code+="<a href='http://aidleyart.wordpress.com/' class='toplink'>Blog</a>&nbsp";
	//code+="<a href='"+root_direction+"shop/shop.htm' class='toplink'>Shop</a>&nbsp";
	code+="<a href='mailto:RHAidley@hotmail.com' class='toplink'>Email</a>&nbsp";
	code+="<a href='"+root_direction+"links/links.htm' class='toplink'>Links</a>&nbsp";
	code+="</td>";
	code+="</tr></table>";

	divOutput.innerHTML=code;
}

