$(document).ready(function(){

	// Foldy
	$(".foldy .foldy-content").css({display : 'none'});
	$(".foldy h3").click(function () {
		$(this).next('.foldy-content').slideToggle("slow");
		$(this).toggleClass("foldy-up");

	});

});
