// JavaScript Document
// ================= IMAGE ROLLOVER FUNCTION =========================
function imgRollMenu (type, id, name, action) {
	if (document.images) {
		if (action == "out") {
			action = "";
		} else {
			action = "_" + action;
		}
		var source = "images/layout/" + type + "/" + name + action + ".gif";
		document.getElementById(id).src = source;
	}
}