function include(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';
	
	head.appendChild(script)
}

function includeExternal(filename)
{
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = gaJsHost+filename;
	script.type = 'text/javascript';
	
	head.appendChild(script)
}

function loadMenu(delay)
{
	if (typeof(_sga_menu_loaded) == 'undefined') {
		var retry="loadMenu("+delay*2+")";
	    window.setTimeout(retry,delay);
	} 
	else {
		include("/js/menu132_compact.js");
	}
}

include("/js/sga_menu_var.js");
loadMenu(100);


