$(function() {
	// Enable the more toggles
	$("#more1").click(function(){
		$('#hidden1').slideToggle("fast"); 
		$(this).text($(this).text() == 'more...' ? 'less' : 'more...'); 
		return false;
	});
	
	$("#more2").click(function(){
		$('#hidden2').slideToggle("fast"); 
		$(this).text($(this).text() == 'more...' ? 'less' : 'more...'); 
		return false;
	});
	
});
