// 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/co1-mission-off.gif","images/co1-mission-on.gif"); // mission 
preLd(1,"images/co1-ourteam-off.gif","images/co1-ourteam-on.gif"); // team
preLd(2,"images/co1-news-off.gif","images/co1-news-on.gif"); // news
preLd(3,"images/t-contact-rt-off.gif","images/t-contact-rt-on.gif"); // contact-top
preLd(4,"images/b-enter-off.gif","images/b-enter-on.gif"); // entertainment
preLd(5,"images/b-air-lft-off.gif","images/b-air-lft-on.gif"); // airline
preLd(6,"images/t-company-b-off.gif","images/t-company-b-on.gif"); // company


