
$(document).ready(function(){
    $("div.faq_tit_off").click(function(){
	    //Desplegamos el elemento
	    if($(this).hasClass("faq_tit_off")){
			$(this).next("div").fadeIn(500);
            $(this).addClass("faq_tit_on");
            $(this).removeClass("faq_tit_off");
	    //Plegamos el elemento
	    }else{
			$(this).next("div").fadeOut(250);
			$(this).addClass("faq_tit_off");
            $(this).removeClass("faq_tit_on");
	    }
	    return false;
	});
	
	$("#btnBuscarFaqs").click(function(){
	    window.location = "/empresa/faqs.aspx?filter=" + $("#filter").val();
	    return false;
	});
})  