jQuery(function($){
	$('h3.expand').next().hide();
	$('h3.expand').bind('click' , function(){
		$(this).next().toggle(300);
		$(this).toggleClass('open');
	});
});
