// This js is to change image of rollover menu button: Home, Time, Report..

function overButton(obj) {
		obj.src = "images/" + obj.id + "_o.jpg";
}

function outButton(obj) {
		obj.src = "images/" + obj.id + ".jpg";
}
