function MainMenuOver(aobject, linkcolor, bgcolor)
{
	//
	// Set background, color & cursor
	//
	aobject.style.backgroundColor = bgcolor;
	aobject.firstChild.style.color			  = linkcolor;
	
	if (document.all)
	{
		aobject.style.cursor = "hand";
	}
	else
	{
		aobject.style.cursor = "pointer";
	}
}

function MainMenuOut(aobject, linkcolor, bgcolor)
{
	aobject.style.backgroundColor = bgcolor;
	aobject.firstChild.style.color			  = linkcolor;
}
