//--------------------------------------------------------------------
function menuOn_1(theObject, theLink)
{
	theObject.style.cursor = "hand";
	status = theLink;
	theObject.style.background = "#FF0000";
}
//--------------------------------------------------------------------
function menuOff_1(theObject)
{
	theObject.style.cursor = "";
	theObject.style.background = "#F1CF45";
	status = '';
}


//--------------------------------------------------------------------
function menuOn_2(theObject, theLink)
{
	theObject.style.cursor = "hand";
	status = theLink;
	theObject.style.background = "#FF0000";
}
//--------------------------------------------------------------------
function menuOff_2(theObject)
{
	theObject.style.cursor = "";
	theObject.style.background = "#FFFFFF";
	status = '';
}


//--------------------------------------------------------------------
function menuOn_3(theObject, theLink)
{
	theObject.style.cursor = "hand";
	status = theLink;
	theObject.style.background = "#FF0000";
}
//--------------------------------------------------------------------
function menuOff_3(theObject)
{
	theObject.style.cursor = "";
	theObject.style.background = "#808080";
	status = '';
}
//--------------------------------------------------------------------
function menuOn_4(theObject, theLink)
{
	theObject.style.cursor = "hand";
	status = theLink;
	theObject.style.background = "#EEDDA8";
}
//--------------------------------------------------------------------
function menuOff_4(theObject)
{
	theObject.style.cursor = "";
	theObject.style.background = "#F1CF45";
	status = '';
}
//--------------------------------------------------------------------
function gotoLink(linkTo)
{
    location.href = linkTo;
}
//--------------------------------------------------------------------
