$(document).ready(function() {
	var qtdPaginas = parseInt($('#fotoImvVisu').width() / 846);
	var pgAtual = 1;
	var pgLancAtual = 1;
	var pgOporAtual = 1;
	
	if($('#fotoImvVisu').width() % 846 > 0)
		qtdPaginas++;
			
	$('#titleImvVisu').click(function(){
		$('#centroImvVisu').slideToggle('slow');
		if($('#imgSetaImvVisu').attr('title') == 'minimizar'){
			$('#imgSetaImvVisu').attr('title','maximizar');
			$('#imgSetaImvVisu').attr('alt','maximizar'); 	
			$('#imgSetaImvVisu').attr('src','IMAGENS/setaAbaixo.png');	
		}
		else{
			$('#imgSetaImvVisu').attr('title','minimizar');
			$('#imgSetaImvVisu').attr('alt','minimizar'); 	
			$('#imgSetaImvVisu').attr('src','IMAGENS/setaAcima.png');	
		}
	});
	
	$('#esqImvVisu').click(function(){		
		if(pgAtual>1){
			$("#fotoImvVisu").animate({"left": "+=846px"}, "normal");
			pgAtual--;	
		}	
	});	
	
	$('#dirImvVisu').click(function(){		
		if(pgAtual<qtdPaginas){
			$("#fotoImvVisu").animate({"left": "-=846px"}, "normal")
			pgAtual++;
		}
	});
	
	$('#esqLanc').hide();
	$('#esqLanc').click(function(){
		if(pgLancAtual>1){
			$("#corpoLanc").animate({"left": "+=415px"}, "normal");
			pgLancAtual--;
			if(pgLancAtual==1)
			$('#esqLanc').hide();
			$('#dirLanc').show();
		}
	});
	
	$('#dirLanc').click(function(){
		if(pgLancAtual<4){
			$("#corpoLanc").animate({"left": "-=415px"}, "normal");
			pgLancAtual++;
			if(pgLancAtual==4)
			$('#dirLanc').hide();
			$('#esqLanc').show();
		}
	});
	
	$('#esqOpor').hide();
	$('#esqOpor').click(function(){
		if(pgOporAtual>1){
			$("#corpoOpor").animate({"left": "+=415px"}, "normal");
			pgOporAtual--;
			if(pgOporAtual==1)
			$('#esqOpor').hide();
			$('#dirOpor').show();
		}
	});
	
	$('#dirOpor').click(function(){
		if(pgOporAtual<4){
			$("#corpoOpor").animate({"left": "-=415px"}, "normal");
			pgOporAtual++;
			if(pgOporAtual==4)
			$('#dirOpor').hide();
			$('#esqOpor').show();
		}
	});
	
	$('#compareImoveis').click(function(){	 
		var resu = "";
		var qtd = 0;
			
		$('div[title="selecionar item"]').each(function(index) {
			if(($(this).css("background-color") == "rgb(255,179,179)")||($(this).css("background-color") == "rgb(255, 179, 179)")){
				resu += $(this).attr('id').replace("div","") + "-"		
				qtd++;	
			}
  		});
		
		if(qtd > 1)
			document.location = "index.asp?pagina=compImoveis&imvs=" + resu;
		else
			alert('Para realizar o comparação de imóveis, selecione no mínimo 2 imóveis!')
		
	});
	
	
	var a = location.href.split("/");
	if((a[a.length-1] == "index.asp?pagina=home")||(a[a.length-1] == "")||(a[a.length-1] == "index.asp"))
		$("#dialog").fadeIn('slow');
		
	$('#closeBanner').click(function(){
		$("#dialog").fadeOut('slow');
	});
		
	$.ajax({
  		url: "maisProcurados.asp",
		success: function(data) {
    		$('.rTagsPes').html(data);
  		}
	});
	
});
