
var help = {
	
	page : 3, // 1 - faq, 2  - bulleting board, 3 contact us
	faq:function(){
		this.page = 1;
		this.updatePage();
	},
	bb:function(){
		this.page = 2;
		this.updatePage();
	},
	contactUs:function(){
		this.page = 3;
		this.updatePage();
	},
	updatePage:function(){
		
		switch(this.page){
			case 3: 
			jQuery("#content").load("index.php?ACTION=contactUs");
			break;
			
			case 1: 
			jQuery("#content").load("?ACTION=faqs");
			break;
			
			case 2: 
			jQuery("#content").load("index.php?ACTION=page&todo=viewBulletingBoard");
			break;
		}
		
			
	}
}

