if (document.images)
{
	//Top Menu Bar Graphics
	
	apb_alt = new Image();
	apb_alt.src = "images/apb_alt.jpg";
	
	apb = new Image();
	apb.src = "images/apb.jpg";
	
	webisodes_alt = new Image();
	webisodes_alt.src = "images/webisodes_alt.jpg";
	
	webisodes = new Image();
	webisodes.src = "images/webisodes.jpg";
	
	dossiers_alt = new Image();
	dossiers_alt.src = "images/dossiers_alt.jpg";
	
	dossiers = new Image();
	dossiers.src = "images/dossiers.jpg";
	
	civilians_alt = new Image();
	civilians_alt.src = "images/civilians_alt.jpg";
	
	civilians = new Image();
	civilians.src = "images/civilians.jpg";
	
	merch_alt = new Image();
	merch_alt.src = "images/merch_alt.jpg";
	
	merch = new Image();
	merch.src = "images/merch.jpg";

}

function rollOn (imgName)
{
	if (document.images)
	{
		imgOn = eval (imgName + "_alt.src");
		document[imgName].src = imgOn;
	}
}

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