// JavaScript Document

function showList(listType) {

	document.getElementById('bus-tab').className = 'not-sel'
	document.getElementById('press-tab').className = 'not-sel'
	document.getElementById('art-tab').className = 'not-sel'

	document.getElementById('bus-list').style.display = 'none'
	document.getElementById('press-list').style.display = 'none'
	document.getElementById('art-list').style.display = 'none'

	document.getElementById(listType + '-tab').className = ''
	document.getElementById(listType + '-list').style.display = 'block'
}