function startPage()
{
	sp = location.search;
	if(sp == '')
	{
		showLeftBox('homeLeft', 2000);
		showRightBox('homeRight', 2000);
		return 0;
	}
	
	//alert(sp);
	
	switch(sp)
	{
		case "?pg=tec":
			showLeftBox('tecLeft', 2000);	showRightBox('tecRight', 2000);
			break;
		case "?pg=business":
			showLeftBox('busconsLeft', 2000);	showRightBox('busconsRight', 2000);
			break;
		case "?pg=training":
			showLeftBox('trainingLeft', 2000);	showRightBox('trainingRight', 2000);
			break;
		case "?pg=idc":
			showLeftBox('idcLeft', 2000);	showRightBox('idcRight', 2000);
			break;
		case "?pg=materials":
			showLeftBox('padimatLeft', 2000);	showRightBox('padimatRight', 2000);
			break;
		case "?pg=equip":
			showLeftBox('equipLeft', 2000);	showRightBox('equipRight', 2000);
			break;
		default:
			showLeftBox('homeLeft', 2000);	showRightBox('homeRight', 2000);
			break;
	}
}


