
	function sleepFade() {
		opacity('leftMenu', 100, 0, 0);
		opacity('rightMenu', 100, 0, 0);
		setTimeout("setFade()", 2500);
	}
	
	function setFade() {
		opacity('bodyFadeRight', 100, 0, 500);
		opacity('leftMenu', 0, 100, 500);
		opacity('rightMenu', 0, 100, 500);
	}
		
	function showList(id) {
		if(document.getElementById(id + 'List').className == 'boxHide') {
			document.getElementById(id + 'List').className = 'boxShow';
			document.getElementById(id + 'Title').className = 'titleHighlight';
		}
	}
	
	function hideList(id) {
		if(document.getElementById(id + 'List').className == 'boxShow') {
			document.getElementById(id + 'List').className = 'boxHide';
			document.getElementById(id + 'Title').className = 'titleOff';
		}
	}