function changeImgOver(id) {
	if(id.indexOf("menuTop") != -1) {
		var newId = "div_"+id;
		document.getElementById(newId).style.backgroundPosition = "bottom left";
	}
	else if(id.indexOf("menuLeft") != -1) {
		var newId = "td_"+id;
		document.getElementById(newId).style.backgroundPosition = "bottom left";
	}
	
}
function changeImgOut(id) {
	if(id.indexOf("menuTop") != -1) {
		var newId = "div_"+id;
		document.getElementById(newId).style.backgroundPosition = "top left";
	}
	else if(id.indexOf("menuLeft") != -1) {
		var newId = "td_"+id;
		document.getElementById(newId).style.backgroundPosition = "top left";
	}
	
}

function changeBorderOver(id)
{
	document.getElementById(id).style.border='inset 2px #DFAD00';
}
function changeBorderOut(id)
{
	document.getElementById(id).style.border='outset 2px #FFD33E';
}
