// JavaScript Document

	function startLoading() {
	  Element.show('mainAreaLoading');
	  Element.hide('mainAreaInternal');
	}
	function finishLoading() {
	  Element.show('mainAreaInternal');
	  setTimeout("Effect.toggle('mainAreaLoading');", 1000);
	}

	function loadContent(id) {
	  startLoading();
	  new Ajax.Updater('mainAreaInternal', 'projects.php', {method: 'post', postBody:'content='+ id +''});
	  finishLoading();
	}
