// 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', 'branch.php', {method: 'post', postBody:'venueID='+ id +''});
	  finishLoading();
		 */
		$("#loaded").hide();
		$("#answer").fadeIn(1000,function(){
			$("#loading").fadeIn(1000,function(){
				$("#loaded").load( 'projects.php?content='+id, function(){
					$("#loading").fadeOut(500); 
					$("#loaded").fadeIn(1000);
					$("#close").click(function(){
						$("#answer").fadeOut(500);
					});
					
					
				});
				
			});
			
		});
		
		
	}

	function loadContentMore(id) {
/*
	  startLoading();
	  new Ajax.Updater('mainAreaInternal', 'branch.php', {method: 'post', postBody:'venueID='+ id +''});
	  finishLoading();
*/
	  $("#loaded").hide();
	  $("#answer").fadeIn(1000,function(){
		  $("#loading").fadeIn(1000,function(){
			  $("#loaded").load( 'question.php?val='+id, function(){
					$("#loading").fadeOut(500); 
					$("#loaded").fadeIn(1000);
					$("#close").click(function(){
						$("#answer").fadeOut(500);
					});
					  
					
				  });
			  
		  });
		  
	  });
	 
		
	}
