function changeSplash(to){
	switch(to){
		case 'personal':
			getObj('splash').style.background = "url('./lib/images/front_splash_personal.jpg') top left no-repeat";
			break;
		case 'business':
			getObj('splash').style.background = "url('./lib/images/front_splash_business.jpg') top left no-repeat";
			break;
		default:
			getObj('splash').style.background = "url('./lib/images/front_splash_default.png') top left no-repeat";
			break;	
	}	
}

function getObj(id){
	return document.getElementById(id);
}