// JavaScript Document

        $(document).ready(function() {
            $("#busca-img").toggle(function() {
                $("#busca").animate({ marginTop: "0px"}, 500 );
				//$("#busca-img").animate({ marginTop: "-20px"}, 500 );
                $("#img_busca").attr("src","imgs/busca_topo_sobe.png");
				$("#img_busca").attr("alt","Fechar Busca");
                
            }, function() {
                $("#busca").animate({ marginTop: "-150px"}, 500 );
				//$("#busca-img").animate({ marginTop: "-10px"}, 500 );
                $("#img_busca").attr("src","imgs/busca-btnencontreseuimovel.png");
				$("#img_busca").attr("alt","Abrir Busca");
            });
        });
  
        $(document).ready(function() {
            $("#container-3alinha-enquete-btns-resultadoparcial").toggle(function() {
                $("#mostra_resultado").show('fast');
                }, function() {
                $("#mostra_resultado").hide('fast');
            });
        });
  
		$(document).ready(function(){	
			$("#container-lancamentos-holder-slider").easySlider({
				continuous: true,
				prevId: 'container-lancamentos-holder-seta-voltar',
				nextId: 'container-lancamentos-holder-seta-avancar',
				controlsShow: false
			});
		});	


			$(document).ready(function() {
				$("#twitter").getTwitter({
					userName: "cygnusimoveis",
					numTweets: 1,
					loaderText: "Carregando tweets...",
					slideIn: true,
					slideDuration: 750,
					showHeading: false,
					headingText: "Latest Tweets",
					showProfileLink: false, 
					showTimestamp: false
				});
			});

