function DivClose(id) {
	var div = document.getElementById(id);
	if(div != null)
		div.style.display="none";
	}
function hideAll(){
	DivClose('addicted');
	DivClose('perfectlife');
	DivClose('sleepytune');
	DivClose('getonthebus');
	DivClose('liveanddiepart1');
	DivClose('santiago');
	DivClose('personalcatastrophe');
	DivClose('slowmotion');
	DivClose('liveanddiepart2');
	DivClose('sundownandlastcall');
	DivClose('adeline');
	DivClose('adelinecoda');
	DivClose('liveanddiepart3');
	}

	
function showLyrics(id) {
	hideAll();
	var div = document.getElementById(id);
	if(div != null)
		div.style.display="block";
	} 
