function header(local, title)
{
	
	document.writeln('	<div class = "headerbg">');
	document.writeln('		<img src = "' + local + 'images/layout/logo.jpg" alt = "Agnor&#39;s HQ">');
	document.writeln('		<div class = "header">' + title + '</div>');
	document.writeln('	</div>');
}


function menu(local)
{
	document.writeln('	<div class = "menu">');
	document.writeln('		<a href ="' + local + 'index.html">Home</a>');
    document.writeln('		- <a href ="' + local + 'blog/index.html">Blog</a>');
	document.writeln('		- <a href ="' + local + 'tutorials/index.html">Tutorials</a>');
	document.writeln('		- <a href ="' + local + 'gamedev/index.html">Curso</a>');
	document.writeln('		- <a href ="' + local + 'gamedev/cpp.html">C++</a>');
	document.writeln('		- <a href ="http://astore.amazon.co.uk/agnorshq-21">Livros</a>');
	document.writeln('		- <a href ="' + local + 'links.html">Links</a>');
	document.writeln('		- <a href ="' + local + 'english/index.html">English</a>');
	document.writeln('	</div>');
	
	document.writeln('	<div class = "secmenu">');
	document.writeln('		<a name = "topo">');
	document.writeln('		<a href= "'+ local + 'sobremim.html">Sobre mim</a> | <a href = "'+ local +'contacto.html">Contacto</a> | <a href = "'+ local +'doacao.html">Doação</a> | <a href = "'+ local +'mapa.html">Mapa</a>'); 
	document.writeln('	</div>');
}