<!--
// rollpics.js	
// 05-16-06, 05-18-06,
// 06-03-06
// 06-22-06
// Load the swap and rollover images here
// pre-fetch these images... Fill in with the "real" target images
// Make sure image sizes match up with calls from main page.
//

 var i                      = 0;
 var width                  = 0;
 var height                 = 0;

 var myFrame                = new Object();

 var myPict                 = new Array();
 var myRoll                 = new Array();
 var myFiles                = new Array();

// pairs array, a pic with its swap or rollover, width, height per image
 var myPairs      = new Array("picpose.jpg,ropose.jpg,115,123",
                              "bwwalcal.jpg,rowalcal.jpg,115,123", 
                              "bwbskull.jpg,brdskull.jpg,115,123",
                              "bwgmorg.jpg,rogmorg.jpg,115,123",
                              "bwbinocs.jpg,robinocs.jpg,115,123");
 
// Loop load for the pre-fetch
 for(i = 0; i < myPairs.length; i++)
 {
   myFiles = myPairs[i].split(",");
   width   = Number(myFiles[2]);
   height  = Number(myFiles[3]);

   myPict[i]                  = myFiles[0]; 
   myFrame[myPict[i]]         = new Image(width, height);
   myFrame[myPict[i]].src     = myPict[i];

   myRoll[i]                  = myFiles[1];
   myFrame[myRoll[i]]         = new Image(width, height);
   myFrame[myRoll[i]].src     = myRoll[i];
 }

// Next group here...

// -->
