//onload function
function generic()
{
var el=document.getElementById("head")
el.innerHTML='<a id="button1" href="index.php?mod=content&menu=9&page_id=13032"><span>Termine</span></a><a id="button2" href="index.php?mod=article&op=uebersicht&thema=31&menu=703"><span>Meine Politik</span></a><a id="button3" href="http://my.peter-friedrich.info"><span>my.Friedrich</span></a>'
};



//setup onload function
if(typeof window.addEventListener != 'undefined')
{
	//.. gecko, safari, konqueror and standard
	window.addEventListener('load', generic, false);
}
else if(typeof document.addEventListener != 'undefined')
{
	//.. opera 7
	document.addEventListener('load', generic, false);
}
else if(typeof window.attachEvent != 'undefined')
{
	//.. win/ie
	window.attachEvent('onload', generic);
}

