function test(){
 $(".pregunta").not("#pregunta1").hide();
 $("#botonSolucion").hide();
 $(".pregunta").click(function(){
	$(this).next().show('1000');
	$('html, body').animate({
scrollTop: $(this).next().offset().top
}, 1000);
    if($(this).attr('id') == "pregunta11"){
		$("#botonSolucion").show();
    }
 });
 }
