function obterConteudoMenuK(){
	var xmlhttp;

	try{
		xmlhttp = new XMLHttpRequest();
	}catch(ee){
		try{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(E){
				xmlhttp = false;
			}
		}
	}

	xmlhttp.open("GET", "http://www.projeto-k.com/getMenuK.php",true);
	//xmlhttp.open("GET", "http://www.projeto-k.com/getMenuK.php",true);
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4){
            var texto = xmlhttp.responseText;
            var conteudo = document.getElementById("menuProjetoK");
            conteudo.innerHTML = unescape(texto);
        }
    }
    xmlhttp.send(null);
}
