// JavaScript Document

// ROLLOVER BUTTON
function overButton(id) {
	document.getElementById(id).src = "images/ov_" + id + ".jpg";
	document.getElementById(id + "_textlink").className = "activeNaviLink";
}

// ROLLOUT BUTTON
function outButton(id) {
	document.getElementById(id).src = "images/st_" + id + ".gif";
	document.getElementById(id + "_textlink").className = "naviLink";
}

// ROLLOVER Text
function overText(id) {
	document.getElementById(id).src = "images/ov_" + id + ".jpg";
}

// ROLLOUT Text
function outText(id) {
	document.getElementById(id).src = "images/st_" + id + ".gif";
}
