if(document.images)
{
	HomeOn = new Image(200,30);
	RingsOn = new Image(200,30);
	MoneyClipsOn = new Image(200,30);
	ContactUsOn = new Image(200,30);
	ReturnPolicyOn = new Image(200,30);

	MasonicOn = new Image(250,30);
	CustomOn = new Image(250,30);
	ShrinerOn = new Image(250,30);
	OddFellowsOn = new Image(250,30);
	PastMasterOn = new Image(250,30);
	MilitaryOn = new Image(250,30);
	ScottishRiteOn = new Image(250,30);
	PublicServiceOn = new Image(250,30);

	HomeOn.src = "../images/buttons/Home2.jpg";
	RingsOn.src = "../images/buttons/Rings2.jpg";
	MoneyClipsOn.src = "../images/buttons/MoneyClips2.jpg";
	ContactUsOn.src = "../images/buttons/ContactUs2.jpg";
	ReturnPolicyOn.src = "../images/buttons/ReturnPolicy2.jpg";

	MasonicOn.src = "../images/buttons/Masonic2.jpg";
	CustomOn.src = "../images/buttons/Custom2.jpg";
	ShrinerOn.src = "../images/buttons/Shriner2.jpg";
	OddFellowsOn.src = "../images/buttons/OddFellows2.jpg";
	PastMasterOn.src = "../images/buttons/PastMaster2.jpg";
	MilitaryOn.src = "../images/buttons/Military2.jpg";
	ScottishRiteOn.src = "../images/buttons/ScottishRite2.jpg";
	PublicServiceOn.src = "../images/buttons/PublicService2.jpg";

	HomeOff = new Image(200,30);
	RingsOff = new Image(200,30);
	MoneyClipsOff = new Image(200,30);
	ContactUsOff = new Image(200,30);
	ReturnPolicyOff = new Image(200,30);

	MasonicOff = new Image(250,30);
	CustomOff = new Image(250,30);
	ShrinerOff = new Image(250,30);
	OddFellowsOff = new Image(250,30);
	PastMasterOff = new Image(250,30);
	MilitaryOff = new Image(250,30);
	ScottishRiteOff = new Image(250,30);
	PublicServiceOff = new Image(250,30);

	HomeOff.src = "../images/buttons/Home.jpg";
	RingsOff.src = "../images/buttons/Rings.jpg";
	MoneyClipsOff.src = "../images/buttons/MoneyClips.jpg";
	ContactUsOff.src = "../images/buttons/ContactUs.jpg";
	ReturnPolicyOff.src = "../images/buttons/ReturnPolicy.jpg";

	MasonicOff.src = "../images/buttons/Masonic.jpg";
	CustomOff.src = "../images/buttons/Custom.jpg";
	ShrinerOff.src = "../images/buttons/Shriner.jpg";
	OddFellowsOff.src = "../images/buttons/OddFellows.jpg";
	PastMasterOff.src = "../images/buttons/PastMaster.jpg";
	MilitaryOff.src = "../images/buttons/Military.jpg";
	ScottishRiteOff.src = "../images/buttons/ScottishRite.jpg";
	PublicServiceOff.src = "../images/buttons/PublicService.jpg";
}

function lightup(imgName)
{
	if(document.images)
	{
		imgOn = eval(imgName + "On.src");
		document[imgName].src = imgOn;

		if(imgName == "Masonic")
		{
			CustomLodgeRing.src = "../images/MasonicRings.jpg";
		}
		if(imgName == "Custom")
		{
			CustomLodgeRing.src = "../images/CustomLodgeRing.jpg";
		}
		if(imgName == "Shriner")
		{
			CustomLodgeRing.src = "../images/ShrinerRings.jpg";
		}
		if(imgName == "OddFellows")
		{
			CustomLodgeRing.src = "../images/OddFellowsRings.jpg";
		}
		if(imgName == "PastMaster")
		{
			CustomLodgeRing.src = "../images/PastMasterRings.jpg";
		}
		if(imgName == "Military")
		{
			CustomLodgeRing.src = "../images/MilitaryRings.jpg";
		}
		if(imgName == "ScottishRite")
		{
			CustomLodgeRing.src = "../images/ScottishRiteRings.jpg";
		}
		if(imgName == "PublicService")
		{
			CustomLodgeRing.src = "../images/PublicServiceRings.jpg";
		}
	}
}

function turnoff(imgName)
{
	if(document.images)
	{
		imgOff = eval(imgName + "Off.src");
		document[imgName].src = imgOff;
	}
}