// JavaScript Document
function showCurrentButton(id){
		buttonName=document.getElementById(id);
		buttonName.className+=" active";
	}

