// JavaScript Development: JavaScriptDesign.com Copyright 2000
// All rights reserved. email: solutions@JavaScriptDesign.com
// Licensed to GGM Internet Solutions

var drkpx = new Array();
var litpx = new Array();

function preLd(num,dark,light) {
 drkpx[num] = new Image();
 drkpx[num].src = dark;
 litpx[num] = new Image();
 litpx[num].src = light;
}

preLd(0,"images/e1se-off.gif","images/e1se-on.gif"); // sets intro 
preLd(1,"images/e1dr-off.gif","images/e1dr-on.gif"); // dressing intro
preLd(2,"images/e1st-off.gif","images/e1st-on.gif"); // stage
preLd(3,"images/e1cl-off.gif","images/e1cl-on.gif"); // credits
preLd(4,"images/e1ev-off.gif","images/e1ev-on.gif"); // trade show
preLd(5,"images/b-air-rt-off.gif","images/b-air-rt-on.gif"); // airline
preLd(6,"images/b-co-icon-off.gif","images/b-co-icon-on.gif"); // company icon
preLd(7,"images/b-co-off.gif","images/b-co-on.gif"); // company txt
preLd(8,"images/b-contact-off.gif","images/b-contact-on.gif"); // contact txt
preLd(9,"images/t_enter-b-off.gif","images/t_enter-b-on.gif"); // top main ent link


