// JavaScript Document
function createMenu(){
	var menuDiv = document.createElement("div");
	menuDiv.id = "divLogo";
	menuDiv.innerHTML = "<a href='index.html'><img id='logo' src='Images/jab_logo_blaa.png' /></a>";
	document.getElementById("body").appendChild(menuDiv);
	
	var menuDiv = document.createElement("div");
	menuDiv.id = "left";
	menuDiv.innerHTML = "<ul> <li><a href='graphicDesign.html'>Graphic design</a></li><li><a href='illustration.html'>Illustration</a></li><li><a href='sketches2.html'>Sketches</a></li></ul><ul><li><a href='about.html'>About</a></li><li><a href='http://jabje.blogspot.com/' target='_blank'>Blog</a></li><li><a href='links.html'>Links</a></li></ul><ul>&mdash;</ul><ul>Jon Arne Berg<br />(+47) 450 30 977<br /><li><a href='mailto:mail@jonarneberg.no'>mail@jonarneberg.no</a></li></ul>";
	document.getElementById("body").appendChild(menuDiv);
}