// USING PENN TRANSIT
//
// PRELOAD IMAGES (borrowed from global.js)

if (document.images)
	{
	using1 = new Image(175,19);
	using1.src = "../images/using_off.gif";
	using2 = new Image(175,19);
	using2.src = "../images/using_on.gif";

	services1 = new Image(175,19);
	services1.src = "../images/services_off.gif";
	services2 = new Image(175,19);
	services2.src = "../images/services_on.gif";

	maps1 = new Image(175,19);
	maps1.src = "../images/maps_off.gif";
	maps2 = new Image(175,19);
	maps2.src = "../images/maps_on.gif";

	partnership1 = new Image(175,19);
	partnership1.src = "../images/partnership_off.gif";
	partnership2 = new Image(175,19);
	partnership2.src = "../images/partnership_on.gif";

	contact1 = new Image(175,19);
	contact1.src = "../images/contact_off.gif";
	contact2 = new Image(175,19);
	contact2.src = "../images/contact_on.gif";

		employment1 = new Image(175,13);
		employment1.src = "images/employment_off.gif";
		employment2 = new Image(175,13);
		employment2.src = "images/employment_on.gif";

	links1 = new Image(175,19);
	links1.src = "../images/links_off.gif";
	links2 = new Image(175,19);
	links2.src = "../images/links_on.gif";
	
	home1 = new Image(175,19);
	home1.src = "../images/home_off.gif";
	home2 = new Image(175,19);
	home2.src = "../images/home_on.gif";

	}

// SINGLE IMAGE REPLACEMENT (based on global.js)

function imgSwap(imgDocID,imgObjName)
	{
	if (document.images)
		{
		document.images[imgDocID].src = eval(imgObjName + ".src");
		}
	}