$(function() {
		   
		   // Folding

	$("h4.expand + div").hide()
		.prev('h4.expand')
		.click(function(){
		var $this = $(this);
		$this.toggleClass("open").next("div").slideToggle();
		return false;
		});
});