

	// Creation of the image objects
if (document.images)
{
GeneralOn=new Image(220, 40);
GeneralOn.src="general_on.gif";
GeneralOff=new Image(220, 40);
GeneralOff.src="general_off.gif";

AboutOn=new Image(220, 35);
AboutOn.src="about_on.gif";
AboutOff=new Image(220, 35);
AboutOff.src="about_off.gif";

ServiceOn=new Image(220, 35);
ServiceOn.src="service_on.gif";
ServiceOff=new Image(220, 35);
ServiceOff.src="service_off.gif";

WorkOn=new Image(220, 35);
WorkOn.src="work_on.gif";
WorkOff=new Image(220, 35);
WorkOff.src="work_off.gif";

PriceOn=new Image(220, 35);
PriceOn.src="price_on.gif";
PriceOff=new Image(220, 35);
PriceOff.src="price_off.gif";

AdviceOn=new Image(220, 35);
AdviceOn.src="advice_on.gif";
AdviceOff=new Image(220, 35);
AdviceOff.src="advice_off.gif";

PartnersOn=new Image(220, 35);
PartnersOn.src="partners_on.gif";
PartnersOff=new Image(220, 35);
PartnersOff.src="partners_off.gif";

ContactsOn=new Image(220, 42);
ContactsOn.src="contacts_on.gif";
ContactsOff=new Image(220, 42);
ContactsOff.src="contacts_off.gif";
}


// function to turn on rolled over graphic
function on(pic)  {
	if (document.images)  {
		document.images[pic].src=eval(pic + "On.src");
	}
}

// function to turn off rolled over graphic
function off(pic)  {
	if(document.images)  {
		document.images[pic].src= eval(pic + "Off.src");
    }
}



