function Show(val)
{
	var testFrame = document.getElementById("mooMenuIFrame");
	if(testFrame.contentDocument)
		var doc = testFrame.contentDocument;
	if (doc == undefined || doc == null)
		if(testFrame.contentWindow.document)
			doc = testFrame.contentWindow.document;
	if (!(doc == undefined || doc == null))
	{
		doc.open();
		doc.write(val);
		doc.close();
	}
}
Event.observe(window, 'load', function (){
	document.getElementById("menuContainer").style.zIndex=1;	
	document.getElementById("mooMenuIFrame").style.zIndex=2; 
});
