// This script contains an array of image information and meta data about the array.

// Meta data follows:
//     j - number of variables per image row
//     collection - name of slide collection
var j=5;
var collection="Mycology";
var collection_date="April 2009";

// The j variables per image row (i) are:
//     i+0 - jpg name
//     i+1 - artist name
//     i+2 - image title
//     i+3 - media
//     i+4 - dimensions in inches (width x height)

// Array follows:
var slide_info=new Array(
 "hierros22","Sylvia Hierro","Mushroom Magic","oil on canvas","48 x 30",
 "hierros20","Sylvia Hierro","Blue Mushroom","oil on canvas","36 x 24",
 "hierros21","Sylvia Hierro","Mushroom Shells","oil on canvas","24 x 36"
);

