$(document).ready(function() {
	$("#scroller-cont").scrollable({circular: true}).autoscroll({ autoplay: true });
	
$(".menu-1 h2").click(function() {
	$(this).next().toggle("slow");
	$(this).toggleClass("activo");
   });
$(".menu-2 h3").click(function() {
	$(this).next().toggle("slow");
	$(this).toggleClass("activo");
   });

$(".menu-3 h4").click(function() {
	$(this).next().toggle("slow");
	$(this).toggleClass("activo");
   });
 });
