// JavaScript Document

function ajax(pagina,foto) {
	var xmlHttp;
try {xmlHttp=new XMLHttpRequest();}
catch (e){  
try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch (e){
   try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
   catch (e){
     alert("O seu browser não suporta Ajax"); return false;
      }
    }
  }
  xmlHttp.onreadystatechange=function(){
    if (xmlHttp.readyState == 1) {
	  document.getElementById("ajax_loader").style.display = "block";
    }	
    if(xmlHttp.readyState==4){
      document.getElementById("ajax").innerHTML = xmlHttp.responseText;
	  document.getElementById("ajax_loader").style.display = "none";
      }
    }
	
	
	if(foto != null) {
		var	url = "includes/"+pagina+".php?foto="+foto;	
	} else {
		var	url = "includes/"+pagina+".php";	
	}
	
	
  xmlHttp.open("GET", url ,true);
  xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;');
  xmlHttp.send(null);
 
}

function  over_apt(apartamento,evento){
	
	
	if(apartamento == "vip") {
		if(evento == "in") {
		document.getElementById('vip').innerHTML = "<img src=\"fotos/apartamentos/IMG_6594_capa_ho.jpg\" id=\"foto_thumbs\" border=\"0\" onmouseout=\"over_apt('vip','out');\" />";
			
		} else if(evento == "out") {
		document.getElementById('vip').innerHTML = "<img src=\"fotos/apartamentos/IMG_6594_capa.jpg\" id=\"foto_thumbs\" border=\"0\" onmouseover=\"over_apt('vip','in');\"  />";	
			
		}			
	}
	else if (apartamento == "lux") {
		if(evento == "in") {
		document.getElementById('lux').innerHTML = "<img src=\"fotos/apartamentos/IMG_6691_capa_ho.jpg\" id=\"foto_thumbs\" border=\"0\" onmouseout=\"over_apt('lux','out');\" />";
			
		} else if(evento == "out") {
		document.getElementById('lux').innerHTML = "<img src=\"fotos/apartamentos/IMG_6691_capa.jpg\" id=\"foto_thumbs\" border=\"0\" onmouseover=\"over_apt('lux','in');\"  />";	
			
		}			
	}
	else if (apartamento == "sta") {
		if(evento == "in") {
		document.getElementById('sta').innerHTML = "<img src=\"fotos/apartamentos/IMG_6736_capa_ho.jpg\" id=\"foto_thumbs\" border=\"0\" onmouseout=\"over_apt('sta','out');\" />";
			
		} else if(evento == "out") {
		document.getElementById('sta').innerHTML = "<img src=\"fotos/apartamentos/IMG_6736_capa.jpg\" id=\"foto_thumbs\" border=\"0\" onmouseover=\"over_apt('sta','in');\"  />";	
			
		}			
	}		
}


function altera_nome(variavel) {
	
	
	if(variavel == "p_fis") {	
	document.getElementById('nome_area').innerHTML = "<b>Nome:</b>";
	
	} else {
	document.getElementById('nome_area').innerHTML = "<b>Nome da Empresa:</b>";
		
	}
	
}


