<?php
//include 'checkmobi.php5';
require_once 'lib/ABC/WebPage.php';

class HomePage extends WebPage {
	public function __construct() {
		parent::__construct(1);
		$this->keywords = 'adventure boot camp';
		//echo "<p style='color:#ffffff;'>Server Time: ".date('H:i:s', time())."</p>";
		$this->addJS('/js/jquery.cycle.all.js');
		$this->addJStoBody("$('#homeAnimation').cycle({fx: 'fade', speed: 4000});");
		$this->addJStoBody('$.preloadImages("/images/home_04o.gif","/images/home_03o.gif");');
		//$this->addJStoBody("$('#sideAnimation').cycle({fx: 'fade', speed: 4000});");
		
		if(isset($_GET['err']) && ($_GET['err'] == 'logout')) $this->message('You have been logged out of the system.');
	}
}

$Page = new HomePage();
$Page->run();
?>
