function startup(iNum) {
	switch(iNum){
		// Do both functions
		case 0:
			initImage();
			initScroll();
		break;
		// Do arrow scroll function
		case 1:
			initScroll();
		break;
		// Do image fade function
		case 2:
			initImage();
		break;
		// Do nothing
		default:
			//
		break;
	}
}

