conf = function (str){ return confirm('Realmente deseas :\n'+str);}

$(document).ready(function(){

	/* Funcion para abrir, cerrar faq */
	$(".faq li").toggle( 
	    function() {$(this).addClass("active")},
	    function() {$(this).removeClass();} 
	);   
	
	/* Formulario de contacto */
	$("#reasons").change( 
	    function() {	    	
	    	if ($("#reasons").val()=="other")	{$("#other_reason_d").show();}
	    	else {$("#other_reason_d").hide();}
	    } 
	); 
	
	/* Buscador */
	$("input#sTerm").click( 
	    function() {	    	
	    	$(this).val('');
	    	} 
	); 
	$("input#websTerm").click( 
	    function() {	    	
	    	$(this).val('');
	    	} 
	);		
	
	/* Idioma */
	$("#lang").change( 
	    function() {		    	 
 			location=$(this).val();        				
	    	}
	);	
	
	/* Errores y aciertos */
    $("div.msgok").fadeOut(5000);
	$("div.errors").fadeOut(5000);
	 
/* FIN del document ready*/
});  
	
	
	           
