// 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="Inner Vision";
var collection_date="February 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(
 "golaszewski09","Rita Golaszewski","Untitled","oil on canvas","30 x 40",
 "golaszewski02","Rita Golaszewski","I'm Sandra Dee","oil on canvas","28 x 22",
 "golaszewski06","Rita Golaszewski","Worm","oil on canvas","16 x 20",
 "golaszewski08","Rita Golaszewski","Aliens Abduct Gumbel","collage","14 x 11",
 "golaszewski03","Rita Golaszewski","Mercedes #3","oil on canvas","11 x 14",
 "golaszewski04","Rita Golaszewski","Mercedes #2","oil on canvas","11 x 14",
 "golaszewski07","Rita Golaszewski","The Gift","oil on canvas","40 x 30"
);

