// JavaScript Document

function MouseOverImage(theDivID, that) {
	var imgSource = that.id + '-over.jpg';
	var theDiv = document.getElementById(theDivID);
	theDiv.style.background = 'url(images/buttons/' + imgSource + ') top left no-repeat';
}
function MouseOutImage(theDivID, that) {
	var imgSource = that.id + '.jpg';
	var theDiv = document.getElementById(theDivID);
	theDiv.style.background = 'url(images/buttons/' + imgSource + ') top left no-repeat';
}