/* 
FUNÇAO PARA TROCAR AS ABAS DOS DETALHES DO EDIFICIO
*/
function trocaAbas(aba, totalgeral, totallazer, totalseguranca){

	/* CLASSE ABAS */
	if(totalgeral != '0') $('#detalhes_geral').attr('class', 'ficha_detalhesedificio_botoes');
	
	if(totallazer != '0') $('#detalhes_lazer').attr('class', 'ficha_detalhesedificio_botoes');
	
	if(totalseguranca != '0') $('#detalhes_seguranca').attr('class', 'ficha_detalhesedificio_botoes');
	
	$('#detalhes_'+aba).attr('class', 'ficha_detalhesedificio_botoes2');
	
	
	/* CONTEUDO DAS ABAS */
	if(totalgeral != '0') $('#listadetalhes_geral').css("display","none"); 
	
	if(totallazer != '0') $('#listadetalhes_lazer').css("display","none");
	
	if(totalseguranca != '0') $('#listadetalhes_seguranca').css("display","none");
	
	$('#listadetalhes_'+aba).css("display","block");
	
}

/*
FUNCÕES PARA AS MINIATURAS E FOTOS DOS IMÓVEIS
*/

function mycarousel_itemLoadCallback(carousel, state) {
	for (var i = carousel.first; i <= carousel.last; i++) {
		if (carousel.has(i)) continue;
		if (i > mycarousel_itemList.length) break;
		carousel.add(i, mycarousel_getItemHTML(mycarousel_itemList[i-1]));
	}
};

function mycarousel_getItemHTML(item) {
	return '<img onClick="fotoFicha(\'' + item.ref + '\',\'' + item.letra + '\',\'' + item.total + '\')" src="http://imagens.sub100.com.br/imov/img/'+ item.url +'.jpg" width="65" height="52">';
};

function fotoFicha(ref, letra, total) {
	var urlfoto = "http://imagens.sub100.com.br/imov/img/"+ref+letra+".jpg";
	$('#fotoimovel').attr("src", urlfoto);
	$('#linkfotoGde').attr("href", "javascript:novajanela('/imoveis/fotos/"+ref+"/"+letra+"/"+total+"','640','585')");
}

/*
AÇÕES DAS ABAS DE VÍDEO
*/
$(document).ready(function() {
	
	$('#ficha_abaFotos').click(function(){
		$('#ficha_abaFotos').addClass('ficha_abaAtiva');
		$('#ficha_abaVideos').removeClass('ficha_abaAtiva');
		$('.ficha_fotos, .jcarousel-skin, .ficha_fotos_legenda, .ficha_fotos_navegacao').show();
		$('.ficha_video').hide();
	});
	$('#ficha_abaVideos').click(function(){
		$('#ficha_abaFotos').removeClass('ficha_abaAtiva');
		$('#ficha_abaVideos').addClass('ficha_abaAtiva');
		$('.ficha_fotos, .jcarousel-skin, .ficha_fotos_legenda, .ficha_fotos_navegacao').hide();
		$('.ficha_video').show();
	});
	
});
