function newImage(arg) 
{
if (document.images) 
{		
        rslt = new Image();		
	rslt.src = arg;		
        return rslt;	
}
}
function changeImages() 
{	
if (document.images && (preloadFlag == true)) 
{
		for (var i=0; i<changeImages.arguments.length; i+=2) 
{			
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];	
}	
}
}

var preloadFlag = false;

function preloadImages() 
{	
if (document.images) 
{		
if(document.name=="history")
{
newImage("images/buttons/button1a.gif");
}
else
nav_film_over = newImage("images/buttons/button1.gif");	

if(document.name=="selected")
nav_film_over = newImage("images/buttons/button2a.gif");
else	
nav_lit_over = newImage("images/buttons/button2.gif");	

if(document.name=="kit")
nav_film_over = newImage("images/buttons/button3a.gif");
else	
nav_comm_over = newImage("images/buttons/button3.gif");		

if(document.name=="home")
topnav_home_over = newImage("images/topnav/topnav_home_over.gif");
else
topnav_home_over = newImage("images/topnav/topnav_home.gif");		

if(document.name=="about")
topnav_home_over = newImage("images/topnav/topnav_about_over.gif");
else
topnav_about_over = newImage("images/topnav/topnav_about.gif");
preloadFlag = true;	
}

} 

function ShowTitle()
{
if(document.name=="disclaimer")
          document.write("<IMG src=images/titles/disclaimer.gif>");
if(document.name=="intro")
          document.write("<IMG src=images/titles/intro.gif>");
if(document.name=="about")
          document.write("<IMG src=images/titles/about.gif>");
if(document.name=="contact")
          document.write("<IMG src=images/titles/contact.gif>");
if(document.name=="download")
          document.write("<IMG src=images/titles/download.gif>");
if(document.name=="history")
          document.write("<IMG src=images/titles/history.gif>");
if(document.name=="home")
          document.write("<IMG src=images/titles/home.gif>");
if(document.name=="kit")
          document.write("<IMG src=images/titles/kit.gif>");
if(document.name=="selected")
          document.write("<IMG src=images/titles/selected.gif>");
}


