function buttonOn(el){
	if( el.className == "buttonSelected" ){
		el.id = "buttonSelected";
	}
	
	el.className = "buttonOn";
}
function buttonOff(el){
	if( el.id == "buttonSelected" ){
		el.className = "buttonSelected";
	} else {
		el.className = "button";
	}
}
