/* Javascript Document */
var starter = 'default';

function showDiv(toShow) {
	document.getElementById(starter).style.display = 'none';
	document.getElementById(toShow).style.display = 'block';
	
	starter = toShow;
}
