// JavaScript Document
var imgPath = "/images/nav_hl.gif";
function rollOver(element) 
{
	var nowDiv = document.getElementById(element);
	nowDiv.style.backgroundImage = "url("+imgPath+")";
	//nowDiv.style.backgroundRepeat = "repeat-x";
}
function rollOut(element)
{
	var nowDiv = document.getElementById(element);
	nowDiv.style.backgroundImage = "none";
	//nowDiv.style.backgroundRepeat = "repeat-x";
}