var anchorToggleState = new Array();
$(document).ready(function()
{ 
	$('#hidden').hide();
	$('a.toggle').click(function()
	{ 
		var id = $(this).attr('id'); 
	    $('#hidden' + id).toggle(); 
		 
		if (anchorToggleState[id] == 'Less...')
		{
			anchorToggleState[id] = 'More...';
			$(this).text('More...');
		}
		else
		{
			anchorToggleState[id] = 'Less...';
			$(this).text('Less...');
		}
		
	     return false; 
		 
    }); 
}); 

