$(function() {
		$('#botonContactoRapido').click(function(){$("#formularioRapido").submit();});
		$('#botonCercar').click(function(){$("#buscador").submit();});
		$('#ordenador a').click(
			function(){
			$("#sort").attr("value",$(this).attr("rel"));			
			$("#buscador").submit();
		});
		$('#poblaciones_virtuales').change( function(){$("#cambio_poblacion").submit();});
		$('#tipo').change(
			function(){
					if($(this).val()=='1' )
						{
						$('.oculta').show();
												}
					else{
						$('.oculta').hide();
						$("#tipo_vivienda option[value='%']").attr('selected', 'selected');
					}	
					}
		);
		$("#tabs").tabs();
		$('#botonContacto').click(

				 function(){
	 				if($(this).hasClass("abierto"))
					{$(this).removeClass("abierto");
						$("#contactoRapido").animate({
							top: '-=64'
							
						  }, 500, function() {
							
						  });
						$("#botonContactoRapido").hide();
					}
					else
					{$(this).addClass("abierto");
					  $("#contactoRapido").animate({
							top: '+=64'
							
						  }, 500, function() {
							
						  });
					$("#botonContactoRapido").show();
					}
					
				  }
		);
		$('.cycle').cycle();
		$("#enviar").click(function(){
						
							$("#FormClientes").attr("action","contactar.php").submit();

							}

				   

				   );
		$('#noticasHome').jCarouselLite({vertical:true,auto:3500,visible:2,speed:1000});
		
		$('#carruselInmuebles').jCarouselLite({visible:4, btnNext: ".flecha_de",
    btnPrev: ".flecha_iz"});
		});

