
$(document).ready(
	function() {
	
	$("#main .button").click(function() {
		var theID = "div#" + $(this).attr("id") + "-more";
		$(this).hide('slow');
		$(theID).show('slow');
	});
	
	$("#main .hidden").click(function() {
		$(this).prev().children(".button").show('fast');
		$(this).hide('fast');
		
	});
	
	
	}
);

