

$(document).ready(function(){

	//AUTO COLLAPSE'S TOGGLED ELEMENT
	$(".example").hide();

	//CHANGES THE BUTTON FROM OPEN TO CLOSED AND VIS-VERSA
	$("a.toggle").toggle(function(){
		$(this).addClass("active");
	}, function () {
		$(this).removeClass("active");
	});
 
	//SLIDES CONTAINER UP AND DOWN ON CLICK
	$("a.toggle").click(function(){
		$(this).next(".example").slideToggle("slow");
	});
 
});

