var ajax=false;
		/*@cc_on @*/
		/*@if (@_jscript_version >= 5)
		try {
		ajax = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
		try {
		ajax = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
		ajax = false;
		}
		}
		@end @*/
		if (!ajax && typeof XMLHttpRequest!='undefined') {
		ajax = new XMLHttpRequest();
		}
		
		function getMyHTML(serverPage, objID) 
		{
			var obj = document.getElementById(objID);
			//if((serverPage.indexOf("http://nietsczhe/")!=0)) return; //aixi evitem el cross-site scripting
			ajax.open("GET", serverPage);
			ajax.onreadystatechange = function() 
			{
				if (ajax.readyState == 4 && ajax.status == 200) 
				{
				obj.innerHTML = ajax.responseText;
				}
			}
			ajax.send(null);
		}
function carregaMenu(){
	
	getMyHTML('http://www.cadenapirenaica.com/menu_cat.php', 'barraMenu');
	iniMenu();
}