// JavaScript Document
// ROLLOUT BUTTON
function outButton(id) {
	document.getElementById(id).src = "../images/st_" + id + ".gif";
}

// ROLLOVER BUTTON
function overButton(id) {
	document.getElementById(id).src = "../images/ac_" + id + ".gif";
}

// ROLLOUT BUTTON on index.html
function outButtonIndexHtml(id) {
	document.getElementById(id).src = "images/st_" + id + ".gif";
}

// ROLLOVER BUTTON on index.html
function overButtonIndexHtml(id) {
	document.getElementById(id).src = "images/ac_" + id + ".gif";
}
