if ( !path ) {var path = '../'; }
if ( path == 'home' ) { path = ''; }

if( document.images )
{
	home_on = new Image()
	home_on.src = path + "graphics/generic/home_on.gif";
	home_off = new Image()
	home_off.src = path + "graphics/generic/home_off.gif";

	services_on = new Image()
	services_on.src = path + "graphics/generic/services_on.gif";
	services_off = new Image()
	services_off.src = path + "graphics/generic/services_off.gif";

	clients_on = new Image()
	clients_on.src = path + "graphics/generic/clients_on.gif";
	clients_off = new Image()
	clients_off.src = path + "graphics/generic/clients_off.gif";

	links_on = new Image()
	links_on.src = path + "graphics/generic/links_on.gif";
	links_off = new Image()
	links_off.src = path + "graphics/generic/links_off.gif";

	contact_on = new Image()
	contact_on.src = path + "graphics/generic/contact_on.gif";
	contact_off = new Image()
	contact_off.src = path + "graphics/generic/contact_off.gif";	
}

function imgOn( imgName )
{
	if( document.images )
	{
		document.images[imgName].src = eval(imgName + "_on.src");
	}
}

function imgOff( imgName )
{
	if( document.images )
	{
		document.images[imgName].src = eval(imgName + "_off.src");
	}
}
