// Links document

//last modified date:

var lastmod = "12 november 2009";

//definitions for the # of pics in each category

//number of abstract sculptures
var alim = 18;

//# of realistic sculptures
var rlim = 9;

//# of other (pastels and drawings) pieces
var olim = 9;

//

//-----------homepage links-----------

//links for abstract sculptures:
var alinks = new Array("","sculpture/intheround/shulamith", "sculpture/intheround/ontogenictoy", 
"sculpture/relief/lust", "sculpture/relief/songofsongs", "sculpture/relief/eve", "sculpture/relief/gardenofeden", 
"sculpture/intheround/seatedlovers", "sculpture/intheround/twoofthree", "sculpture/intheround/lovers", "sculpture/intheround/lifeoverdeath",
"sculpture/sitespecific/quarkpark/quarkpark1", "sculpture/sitespecific/quarkpark/quarkpark2", "sculpture/sitespecific/quarkpark/quarkpark3", 
"sculpture/sitespecific/quarkpark/quarkpark4", "sculpture/sitespecific/quarkpark/quarkpark5", "sculpture/sitespecific/quarkpark/quarkpark6", 
"sculpture/sitespecific/quarkpark/quarkpark7", "sculpture/sitespecific/quarkpark/quarkpark8");

//titles of abstract sculptures:
var aalts = new Array("","Shulamith - Song of Songs 7 : 7-8", "An Ontogenic Toy", "Lust", "Song of Songs", "Eve", 
"Garden of Eden", "Seated Lovers", "Two of Three of One and Five of the Other", "Lovers", "Life Over Death",
"Quark Park Picture 1", "Quark Park Picture 2", "Quark Park Picture 3", "Quark Park Picture 4", "Quark Park Picture 5", 
"Quark Park Picture 6", "Quark Park Picture 7", "Quark Park Picture 8");

//links for realistic sculptures:
var rlinks = new Array("","sculpture/intheround/marbletorso", "sculpture/intheround/womaninlabor", 
"sculpture/portraits/martha", "sculpture/portraits/anxiety", "sculpture/portraits/jeffrey", 
"sculpture/intheround/kneelingpregnant", "sculpture/intheround/seatedpregnant", "sculpture/intheround/immortality", 
"sculpture/intheround/sarahlaughed");

//titles of realistic sculptures:
var ralts = new Array("","Marble Torso", "Woman in Labor", "Pensive Head : Martha", "Anxiety", "Jeffrey", "Kneeling Pregnant Woman", 
"Seated Pregnant Woman", "Our Only Assurance of Immortality", "And Sarah Laughed - Genesis 18:12");			

//links of others (drawings and pastels):
var olinks = new Array("","pastel/kate", "drawing/johanna", "drawing/donnareading", "pastel/yearofthesnake", 
"drawing/frankseated", "pastel/caroline", "drawing/fidelity", "drawing/adameveundertree", "drawing/adamevewithgod");

//titles of others (drawings and pastels):
var oalts = new Array("","Kate with Indian print", "Johanna", "Donna Reading", "In the Year of the Snake", 
"Frank Seated", "Caroline", "Fidelity", "Adam and Eve at the Tree In the Garden of Eden",
"Adam and Eve With God Under the Tree in the Garden of Eden");	


//------------sculpture page links---------------

//number of sculptures
var slim = rlim + alim - 1;//-1 b/c of the ""			

//links
var slinks = new Array();
slinks = alinks;

//titles
var salts = new Array();
salts = aalts;
for(k=1;k<=rlim;k++) {
	salts[k+alim] = ralts[k];
	slinks[k+alim] = rlinks[k];
}



/*NB: I am not planning on using randomization for these or drawings and pastels b/c we want to display everything
//------------in the round page------------------
//links
var rndlinks = new Array("", alinks(1), alinks(2), alinks(7), alinks(8), alinks(9), rlinks(1), rlinks(2), rlinks(6),
rlinks(7), rlinks(8), rlinks(9));

//titles
var rndalts = new Array("", aalts(1), aalts(2), aalts(7), aalts(8), aalts(9), ralts(1), ralts(2), ralts(6), 
ralts(7), ralts(8), ralts(9));

//number of in-the-rounds
var rndlim = 11;

//-------------relief page--------------------

//links
var rlflinks = new Array("", alinks(3), alinks(4), alinks(5), alinks(6));

//titles
var rlfalts = new Array("", aalts(3), aalts(4), aalts(5), aalts(6));

//number of reliefs
var rlflim = 7;

//-------------portrait page-------------------

//links
var plinks = new Array("", rlinks(3), rlinks(4), rlinks(5));

//titles
var palts = new Array("", ralts(3), ralts(4), ralts(5));

//number of portraits
var plim = 3;
*/
