function displayTab(tabID){
		
		document.getElementById('MainBox1').className = 'tabMainBoxHidden';
		document.getElementById('MainBox2').className = 'tabMainBoxHidden';
		document.getElementById('MainBox3').className = 'tabMainBoxHidden';
		document.getElementById('MainBox4').className = 'tabMainBoxHidden';
		document.getElementById('MainBox5').className = 'tabMainBoxHidden';
		
		document.getElementById('MainBox'+tabID).className = 'tabMainBox';

		document.getElementById('tab1').className = 'tab';
		document.getElementById('tab2').className = 'tab';
		document.getElementById('tab3').className = 'tab';
		document.getElementById('tab4').className = 'tab';
		document.getElementById('tab5').className = 'tab';
		
		document.getElementById('tab'+tabID).className = 'tabSelected';
		
	}