jQuery(document).ready(function() {
	jQuery('#helpmenu a').click(function(){
		var toLoad = jQuery(this).attr('href');
		jQuery('#content').hide('slow',loadContent);
		jQuery('#load').remove();
		jQuery('#wrapper').append('<span id="load">LOADING...</span>');
		jQuery('#load').fadeIn('normal');
    function loadContent() { jQuery('#content').load(toLoad,'',showNewContent()); }
    function showNewContent() { 
      jQuery('#content').html('');
      jQuery('#content').show('slow',hideLoader()); 
    }
    function hideLoader() { jQuery('#load').fadeOut('normal'); }
		return false;
	});
});

function doAjaxContent(aElem){
	var toLoad = jQuery(aElem).attr('href');
	jQuery('#content').hide('slow',loadContent);
	jQuery('#load').remove();
	jQuery('#wrapper').append('<span id="load">LOADING...</span>');
	jQuery('#load').fadeIn('normal');
  function loadContent() { jQuery('#content').load(toLoad,'',showNewContent()); }
  function showNewContent() { 
    jQuery('#content').html('');
    jQuery('#content').show('slow',hideLoader()); 
  }
  function hideLoader() { jQuery('#load').fadeOut('normal'); }
	return false;
}
