//Navegação AJAX para novidades
var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
} 

function novidadesNav(id) {

  //Seta variavel url com id
  url = "_inc/novidades_nav.asp?i=" + id; 
  
  http.open("GET", url, true);
  http.onreadystatechange=function() {
    if(http.readyState == 4) {
      document.getElementById('novidades').innerHTML = http.responseText;
    }
  }
  http.send(null);
}