// 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"};
//return A_illustrationInfo;


//ARRAY OF OBJECTS (A_illustrationInfo[n].property) TO USE IN REPLACEMENT OF LARGE ILLOS
//---------------------------------------------------------------------------------------
// SELECT SPECIFIC ILLUSTRATION FROM MAIN MENU
//---------------------------------------------------------------------------------------

function chooseBook(divNum) 
{
//dontLick();
G_bigIllo = document.getElementById("bigIllo");
hideElement("menuViewDiv");
showElement("detailViewDiv");
G_mainCounter = divNum;
loadImage("illo");
window.scrollTo(0,0);
var thisId = eval(G_pageName + "Eye");
thisId.switchButton("Off");
}

//---------------------------------------------------------------------------------------
// SELECT SPECIFIC ILLUSTRATION FROM MAIN MENU
//---------------------------------------------------------------------------------------

