// 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/ab-refer-off.gif","images/ab-refer-on.gif"); 
preLd(1,"images/ab-primarycare-off.gif","images/ab-primarycare-on.gif"); 
preLd(2,"images/ab-womens-off.gif","images/ab-womens-on.gif");
preLd(3,"images/ab-osteo-off.gif","images/ab-osteo-on.gif");
preLd(4,"images/ab-hiv-off.gif","images/ab-hiv-on.gif");
preLd(5,"images/ab-about-off.gif","images/ab-about-on.gif");
preLd(6,"images/ab-contact-off.gif","images/ab-contact-on.gif");
preLd(7,"images/ab-office-off.gif","images/ab-office-on.gif");

