﻿window.onload = function()
{		
	if (document.getElementById("mainmenu"))
	{
		getContent('mainmenu');
	}	
}

function getContent( pageId)
{
	var content;
	
	if (document.getElementById(pageId))
	{
		content = document.getElementById(pageId).innerHTML;
	}
	else
	{
		content = "Sorry page not found.";
	}
	
	document.getElementById("floatinglayer").innerHTML = content;
}

   
