function doNav(key)
{
	var display = $('#text' + key).css('display');

	if (display == 'block')
	{
		//$('.text').hide();
		$('#text' + key).hide(); 
		return false;
	}
	else
	{
		$('.text').hide();
		$('#text' + key).show(); 
		return false;
	}
}
