// 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/con1-info-off.gif","images/con1-info-on.gif"); // info request 
preLd(1,"images/con1-locations-off.gif","images/con1-locations-on.gif"); // locations
preLd(2,"images/t-co-rt-off.gif","images/t-co-rt-on.gif"); // company
preLd(3,"images/b-enter-off.gif","images/b-enter-on.gif"); // entertainment
preLd(4,"images/b-air-lft-off.gif","images/b-air-lft-on.gif"); // airline
preLd(5,"images/t-contact-b-off.gif","images/t-contact-b-on.gif"); // contact
preLd(6,"images/con2-la-off.gif","images/con2-la-on.gif"); // los angeles
preLd(7,"images/con2-ny-off.gif","images/con2-ny-on.gif"); // new york
preLd(8,"images/con2-van-off.gif","images/con2-van-on.gif"); // vancouver


