/*
.........................
:: Javascript a medida. ::
.........................
*/

	$(document).ready(function() {
			
			
			//Slider destacados
				
			$('#coda-slider-1').codaSlider();
			
			
			//Buscador
			
			$(".botonAdvanced").click(function () {
					
				
				if ($("#SearchF2").is(":hidden")) {
       				 $("#SearchF2").slideDown("fast");
					document.getElementById("openHome").style.display="none";
					document.getElementById("closeHome").style.display="block";

      			} else {
	  				$("#SearchF2").slideUp("fast");
					document.getElementById("openHome").style.display="block";
					document.getElementById("closeHome").style.display="none";
			
      			} 
					
			});
			
			//Count Down
			faltan();
		
						

	});
	
	
	function faltan(){
		var hoy = new Date();
		var fecha = new Date (2012,01,29);
		var faltan = fecha - hoy;
		
		var segundos = Math.round(faltan/1000);
		var minutos = Math.floor(segundos/60);
		var segundos_s = segundos%60;
		var horas = Math.floor(minutos/60);
		var minutos_s = minutos%60;
		var dias = Math.floor(horas/24);
		var horas_s = horas%24;
		//alert (dias);
		if (dias==1){
			$('#dias_es').html('Falta <strong>'+dias+'</strong> d&iacute;a ');
			$('#dias_en').html('<strong>'+dias+'</strong> day left');
		} else {
			$('#dias_es').html('Faltan <strong>'+dias+'</strong> d&iacute;as ');
			$('#dias_en').html('<strong>'+dias+'</strong> days left');
		}
		$('#dias_de').html('<strong>'+dias+'</strong> days left ');
		$('#dias_ru').html('<strong>'+dias+'</strong> days left ');
		
		return true;
	}
	
	
	
	
	haccordion.setup({
				accordionid: 'hc1', //main accordion div id
				paneldimensions: {peekw:'224px', fullw:'482px', h:'365px'},
				selectedli: [0, true], //[selectedli_index, persiststate_bool]
				collapsecurrent: false //<- No comma following very last setting!
			})
			
	
	function cambiarParametrosBuscador(scriptLlamado) {
		
		if ($("#SearchF2").is(":hidden")) {
			$('#searchHomeRec').load(scriptLlamado, { 'recarga':1,'idRegion': document.getElementById('idRegion').value, 'idCiudad': document.getElementById('idCiudad').value });
		} else {
			$('#searchHomeRec').load(scriptLlamado, { 'recarga':1,'idRegion': document.getElementById('idRegion').value, 'idCiudad': document.getElementById('idCiudad').value }, function(response, status, xhr) {
				//document.getElementById("SearchF2").style.display="block";
				$("#SearchF2").show();
			});

		}
		

	}
	function panel() {
		alert(document.getElementById("SearchF2").style.display);
		document.getElementById("SearchF2").style.display="block";
		alert(document.getElementById("SearchF2").style.display);
	}
	
	

	
	
	
