<!--
// Wrap the per-page functions which are responsible for hiding any elements which might
// not be obscured correctly by the DHTML.
var pageHideSelectBoxes;
var pageShowSelectBoxes;

function hideSelectBoxes()
{
	if ( pageHideSelectBoxes )
	{
		pageHideSelectBoxes();
	}
}

function showSelectBoxes()
{
	if ( pageShowSelectBoxes )
	{
		pageShowSelectBoxes();
	}
}

if ( document.images )
{
	diversity_on = new Image();
	diversity_on.src = "images/butts/diversity_on.gif";
	diversity_off = new Image();
	diversity_off.src = "images/butts/diversity.gif";

	ourproducts_on = new Image();
	ourproducts_on.src = "images/butts/products_on.gif";
	ourproducts_off = new Image();
	ourproducts_off.src = "images/butts/products.gif";

	accreditations_on = new Image();
	accreditations_on.src = "images/butts/accreditations_on.gif";
	accreditations_off = new Image();
	accreditations_off.src = "images/butts/accreditations.gif";

	awards_on = new Image();
	awards_on.src = "images/butts/awards_on.gif";
	awards_off = new Image();
	awards_off.src = "images/butts/awards.gif";

	chefsdelight_on = new Image();
	chefsdelight_on.src = "images/butts/chefsdelight_on.gif";
	chefsdelight_off = new Image();
	chefsdelight_off.src = "images/butts/chefsdelight.gif";

	lacucinetta_on = new Image();
	lacucinetta_on.src = "images/butts/lacucinetta_on.gif";
	lacucinetta_off = new Image();
	lacucinetta_off.src = "images/butts/lacucinetta.gif";

	royalorient_on = new Image();
	royalorient_on.src = "images/butts/royalorient_on.gif";
	royalorient_off = new Image();
	royalorient_off.src = "images/butts/royalorient.gif";

	provincialdairy_on = new Image();
	provincialdairy_on.src = "images/butts/provincialdairy_on.gif";
	provincialdairy_off = new Image();
	provincialdairy_off.src = "images/butts/provincialdairy.gif";

	faqs_on = new Image();
	faqs_on.src = "images/butts/faqs_on.gif";
	faqs_off = new Image();
	faqs_off.src = "images/butts/faqs.gif";

	registration_on = new Image();
	registration_on.src = "images/butts/memberreg_on.gif";
	registration_off = new Image();
	registration_off.src = "images/butts/memberreg.gif";

	distributors_on = new Image();
	distributors_on.src = "images/butts/distributors_on.gif";
	distributors_off = new Image();
	distributors_off.src = "images/butts/distributors.gif";

	nutrition_on = new Image();
	nutrition_on.src = "images/butts/nutritionalinfo_on.gif";
	nutrition_off = new Image();
	nutrition_off.src = "images/butts/nutritionalinfo.gif";

	foodsafety_on = new Image();
	foodsafety_on.src = "images/butts/foodsafety_on.gif";
	foodsafety_off = new Image();
	foodsafety_off.src = "images/butts/foodsafety.gif";

	directsales_on = new Image();
	directsales_on.src = "images/butts/directsales_on.gif";
	directsales_off = new Image();
	directsales_off.src = "images/butts/directsales.gif";

}

function turnOn(imageName)
{
	if (document.images)
	{
		document[imageName].src = eval(imageName + "_on.src");
	}
}

function turnOff(imageName)
{
	if (document.images)
	{
		document[imageName].src = eval(imageName + "_off.src");
	}
}

function turnOnInput( elementId )
{
	var element = document.getElementById(elementId);
	if ( element != undefined )
	{
	    element.style.backgroundColor = "#9D9FCF";
	}
}

function turnOffInput( elementId )
{
	var element = document.getElementById(elementId);
	if ( element != undefined )
	{
	    element.style.backgroundColor = "#262E5C";
	}
}

function turnOnButton( elementId )
{
	var element = document.getElementById(elementId);
	if ( element != undefined )
	{
	    element.style.backgroundColor = "#9D9FCF";
		element.style.cursor = "pointer";
	}
}

function turnOffButton( elementId )
{
	var element = document.getElementById(elementId);
	if ( element != undefined )
	{
	    element.style.backgroundColor = "#262E5C";
		element.style.cursor = "default";
	}
}

//-->

