$(document).ready(function(){

//Hide (Collapse) the toggle containers on load
	$(".contenedorToggle").hide();
//	$(".contenedorToggle:first").show();
//	$(".contenedorToggle").css("display","none");

//Switch the "Open" and "Close" state per click
	$(".tituloToggle").toggle(function(){
		$(this).addClass("activo");
		}, function () {
		$(this).removeClass("activo");
	});

//Slide up and down on click
	$(".tituloToggle").click(function(){
		$(this).next(".contenedorToggle").slideToggle("slow");
	});

});

// Another function / Same result
//$(document).ready(function(){
////Hide (Collapse) the toggle containers on load
//$(".contenedorToggle").hide();

////Slide up and down & toogle the Class on click
//$(".tituloOpcion").click(function(){
	//$(this).toggleClass("active").next(".contenedorToggle").slideToggle("slow");
//});

//});

//http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/
