jQuery('.expand').click(function(e) {
	e.preventDefault();
	var thing = jQuery('#' + jQuery(this).attr('rel'));
	if (thing.is(':visible')) thing.hide('fast'); else thing.show('fast');
});
