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

