
// Pre-cache the images and display them on the page
function load_images() 
{ for(I = 0; I < document.all.smallpic.length; I++) 
    { imgcache[I] = new Image(); 
	  imgcache[I].src = "images/" + prod[I] + ".jpg"; 
	  document.all.smallpic[I].src = imgcache[I].src; 
	}
}

function select_item(itemnum)
{ if(itemnum >= document.all.smallpic.length) return;
  document.all.prodname.innerText = itemname[itemnum];
  document.all.proddesc.innerText = itemdesc[itemnum];
  document.all.prodimg.src = imgcache[itemnum].src;
 } 

function load_arrays() 
{
// Product Codes are used for image names - eg. 10-1065.jpg
prod[0] = "ShootTheFreak";  itemname[0] = "Shoot The Freak";
itemdesc[0] = "Live Human Targets";

prod[1] = "WonderWheel1";  itemname[1] = "The Wonder Wheel";
itemdesc[1] = " ";

prod[2] = "WonderWheelPatWave2";  itemname[2] = "The Wonder Wheel";
itemdesc[2] = "Pat bravely stays earthbound to make sure no one sabotages the ride.";

prod[3] = "ImpeachOnTheBeach1";  itemname[3] = "Impeach On The Beach";
itemdesc[3] = "Bodies on the Beach spell out their political message.";
}

function showpic(htmfile, nwidth, nheight)
{
if(window_opened) newwin.close();
newwin = open(htmfile,"Menu","width=" + nwidth + ",height=" + nheight + ",resizable,");
window_opened = true;
newwin.focus();
}




