$(document).ready(function(){
	$("div.webpart_head").click(function(event){
		$(this).next().slideToggle("slow");
		$(this).parent().toggleClass("expand");
	});
});
