$(function() {
	$("h2.projectTitle").click(function() {
		theProject = $(this).next("div");
		vis = $(this).next("div").css("display");
		if(vis == "block") {
			$(theProject).fadeOut('slow',function() {
				$(theProject).css("display","none");
			});
			$(this).css("background", "url(images/projectplus.gif) no-repeat left 12px");
		} else {
			$(theProject).fadeIn('slow', function() {
				$(theProject).css("display","block");
			});
			$(this).css("background", "url(images/projectminus.gif) no-repeat left 12px");
		}
	})
});