$(document).ready(function(){
	//añadimos eventos para que se muestren más opciones en los filtros
	$(".busVerMas").click(function(event){
		$(this).parent("li").toggle("slow");
		$(this).parent("li").parent().next(".busMasOp").toggle("slow");
		
		// Stop the link click from doing its normal thing
		return false;
	});
	//Añadimos eventos para ocultar/mostrar los distintos filtros
	$(".busFoldFilter").click(function(event){
		$(this).parent("h3").toggleClass("max");
		var ultimo=$(this).parent("h3").next("div.busOcultarFiltro");
		ultimo.toggle("slow");
		
		// Stop the link click from doing its normal thing
		return false;
	});

	//añadimos el evento para el ver más de los destacados
	$(".busVerMasDestacados").click(function(event){
		if ($(this).html()=='ocultar'){
			$(this).html('ver más');
			$(this).addClass('marcado');
			$(this).parent().find(".busMasDestacados").css('display','none');
		}else{
			$(this).html('ocultar');
			$(this).removeClass('marcado');
			$(this).parent().find(".busMasDestacados").css('display','');
		}

		// Stop the link click from doing its normal thing
		return false;
	});

});

