function tabSwitchInit() {
	var guisection = document.getElementById('GUI');
	var clisection = document.getElementById('CLI');
	var clitab = document.getElementById('clitab');
	var guitab = document.getElementById('guitab');
	
	guisection.style.display = 'none';
	
	clitab.removeAttribute('href');
	guitab.removeAttribute('href');
	
	clitab.onclick = tabSwitch;
	guitab.onclick = tabSwitch;
	
	clitab.style.cursor = "pointer";
	guitab.style.cursor = "pointer";
	
}
function tabSwitch() {
	if(this.id == 'guitab') {
		var show = 'GUI';
		var hide = 'CLI';
	} else {
		var show = 'CLI';
		var hide = 'GUI';
	}
	var shower = document.getElementById(show);
	var hider = document.getElementById(hide);
	shower.style.display = "inline";
	hider.style.display = "none";
}
