/**
 * @author samuelme
 */
var AboutPage =  function(){
	
	//private vars
	
	
	//public methods
	return {
		init : function(){
			
		},
		show : function(){
		$.ajax({
		  url: "about.php",
		  cache: false,
		  success: function(html){
		  	
		  	$('#videoHolder').hide();
		    var $about = $(html).find('#aboutHolder');
			$about.css({display:'none'}).appendTo('#contentHolder');
			
			$about.fadeIn('slow');
			//home button
			$about.find('h1 a').bind("click",function(){
				 SWFAddress.setValue("?p=facility");
				 $(this).fadeTo("fast", 0);
				return false;
			});
			
			
		  }
		});
				
				
				 SWFAddress.setTitle("Reality: About Us");
		},
		remove : function () {
			
		}
	}
	
	//private methods
	
}()
