// JavaScript Document

function setDownButton(id) {
	
	if (document.getElementById(id)) {
		var btn = document.getElementById(id);
		btn.className = "down";
	}
}

