$(document).ready(function () {
	// Ativando pesquisa por Faixa de Preço
	emobili.pesquisaPorFaixa = false;
	emobili.emobiliNet = false;
	// Renomeando Labels
	emobili.label.codigo = "Pesquisa por código:";
	// Alterando ordem de exibiçao
	emobili.sistemas = "A";
	// Carregando o e-mobili
	emobili.carrega();
	// Renomeando Elementos
	$("#tipoDeImovel_A").get(0).options[0].text = 'Tipo de Imóvel';
	$("#cidade_A").get(0).options[0].text = 'Cidade';
	//$("#tipoDeImovel_V").get(0).options[0].text = 'Tipo de Imóvel';
	//$("#cidade_V").get(0).options[0].text = 'Cidade';
	$("#dormitorioSelect").get(0).options[0].text = 'Dormitórios';
	// Criando seçao de pesquisa por código
	var submiter = document.createElement("input");
	submiter.type="button";
	submiter.id="codigo";
	submiter.value = "Ok";
	submiter.onclick = function(){
		if($("#codigoInput").get(0).value == 'Codigo do imovel'){
			alert('Preencha o código do imovel!');
		}else{
			$('#botaoSubmit').get(0).onclick();
		}
	}
	$("#emobiliDiv").get(0).insertBefore($('.botoes').get(0),$('#contorno_codigo').get(0));
	$("#contorno_codigo").get(0).appendChild(submiter);
	//$("#pesquisaCodigo").get(0).appendChild($("#contorno_codigo").get(0));
	$("#contorno_bairro").get(0).className="elementos";
	$("#botaoSubmit").get(0).value='Pesquisar';
});
function videoManager(video, texto){
	var enderecoPlayer = "http://e-mobili.net/manager/exec/index.php?acao=player&aplicacao=site&video=";
	var player = window.open("","videoManager","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=260,height=300");
	player.document.write("<html><head><title>Vídeo - "+texto+"</title></head><body style='background:#c0c0c0'><div align='center'><iframe src='"+enderecoPlayer+video+"' width='240' height='235' frameborder='0' scrolling='no' allowtransparency='yes'></iframe><br /><span style='font:normal 13px arial;margin-top:4px'>"+texto+"</span></div></body></html>");
}
