
//This is an image preload script
var pix0 = new Array();
var pix1 = new Array();

for (var i=0; i<=2; i++){
pix0[i]="";
pix1[i]="";
}

function preloadButtonSet(num,dark,light) {
    if(document.images){
        pix0[num] = new Image();
        pix0[num].src = dark;
        pix1[num] = new Image();
        pix1[num].src = light;

    }
}

//This is the rollover part

function over(num) {
 if (document.images)
  eval("document.button"+num+".src = pix1["+num+"].src;");
 return false;
}

function out(num) {
 if (document.images)
  eval("document.button"+num+".src = pix0["+num+"].src;");
 return false;
}
