// Two helpers for the index hiding/showing:

function hideContent()
	{
		$('ContentHide').hide();
		$('ContentWait').show();
		Effect.BlindUp('ContentIndex', {
		afterFinish: function() {
				$('ContentShow').show();
				$('ContentWait').hide();
			}
		});
		
		return false;	
	}

function showContent()
	{
		$('ContentShow').hide();
		$('ContentWait').show();
		Effect.BlindDown('ContentIndex', {
		afterFinish: function() {
				$('ContentHide').show();
				$('ContentWait').hide();
			}
		});
		
		return false;
	}