swfobject.embedSWF('/images/index/home_flash.swf', 'home_flash', '562', '361', '9.0.0', '', {xml:'/images/index/images.xml'}, {wmode:'transparent'});

$(function() {
	
	escuchaCombos();
	
});

function escuchaCombos() {
	
	 $('#buscador select').live('change', function() {
		 
		 xajax_actualizar(xajax.getFormValues('buscador'));
		 
	 });
	 
}

function goToFicha(id) {
	
	document.location.href = '/fichaVo.php?ad_id=' + id;
	return false;
	
}

function setForm(json) {
	
	$.each(json.data, function() {
		
		$('[name=' + this.name + ']', json.form).val(this.value);
		
	});
	
}

