function showDiv(which)
{
	var tmpMenu = document.getElementById(which);

	if(tmpMenu.style.display == "block")
	{
		tmpMenu.style.display = "none";
	}else
	{
		tmpMenu.style.display = "block";
	}

	return false;	
}

function handHover()
{
	var tmpMenu = document.getElementById(which);

	if(tmpMenu.style.cursor == "hand")
	{
		tmpMenu.style.cursor = "none";
	}
	else
	{
		tmpMenu.style.cursor = "hand";
	}

	return false;	
}
/*
function hover(aImg)
{
	
	var parts = aImg.src.split(".gif");
	aImg.src = parts[0] + "_over.gif";	
	
}

function endHover(aImg)
{
	var parts = aImg.src.split("_over");
	aImg.src = parts[0] + parts[1];	
}
*/
