// ARRAY OF OBJECTS (A_illustrationInfo[n].property) TO USE IN REPLACEMENT OF LARGE ILLOS

/*This is an alternate way of handling this array. Compare to lightImages.htm. I like this shorthand method because all the information that has to be updated is labeled in one spot.*/

var C_imageFolder = "../media/" + G_pageName + "/";

var A_illustrationInfo = new Array();
var A_layoutInfo;

A_illustrationInfo[0]= {name:"4_5", left:"200px", top:"20px", width:"700px", height:"350px"};
A_illustrationInfo[1]= {name:"6_7", left:"200px", top:"20px", width:"700px", height:"350px"};
A_illustrationInfo[2]= {name:"8_9", left:"200px", top:"20px", width:"700px", height:"350px"};
A_illustrationInfo[3]= {name:"10_11", left:"200px", top:"20px", width:"700px", height:"350px"};
A_illustrationInfo[4]= {name:"12_13", left:"200px", top:"20px", width:"700px", height:"350px"};



//ARRAY OF OBJECTS (A_illustrationInfo[n].property) TO USE IN REPLACEMENT OF LARGE ILLOS
//---------------------------------------------------------------------------------------
