$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".inner").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h4.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h4.trigger").click(function(){
		$(this).next(".inner").slideToggle("slow");
	});
	
	// Back to top
	$(document).ready(function() {
	$('a[href=#top]').click(function(){
	$('html, body').animate({scrollTop: '0px'}, 2000);
	return false;
	});
	});

});
