// JavaScript Document
function createMenu(){
	var menuDiv = document.createElement("div");
	menuDiv.id = "divLogo";
	menuDiv.innerHTML = "<a href='index.html'><img id='logo' src='Images/logo_jab_s.png' /></a>";
	document.getElementById("body").appendChild(menuDiv);
	
	var menuDiv = document.createElement("div");
	menuDiv.id = "left";
	menuDiv.innerHTML = "<pre><ul>&mdash; &#9; &#9; &#9; &mdash; </ul><ul><li><a href='info.html'>Info</a> &#9; &#9; &#9;<a href='index.html'>Selected work</a></li><li><a href='oh.html'>Oh?</a>&#9; &#9; &#9;<a href='type.html'>Various type</a></li><li><a href=''http://jabje.blogspot.com/' target='_blank'>Blog</a> &#9; &#9; &#9;<a href='sketches2.html'>Sketches</a></li></ul></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><ul>&mdash;</ul></pre>";
	document.getElementById("body").appendChild(menuDiv);
}
