//In this system, pictures are sorted into groups, so you can add pictures from different events.
//To add a new group, do the following:
//AddGroup("groupName","Description of group");


AddGroup("2006 Ice Cream Social","");
AddGroup("2007 Ice Cream Social","");
//This is where you attach photos to groups.
//The following is the syntax:
//AddPhoto("file path","thumbnail path, if applicable", "photo caption","photo group -- must be a defined group");
AddMultiple("gallery/2006icecream/Ice_Cream_Social_%n.JPG",1,3,"2006 Ice Cream Social");
AddMultiple("gallery/2007icecream/DSC015%n.jpg",62,83,"2007 Ice Cream Social");


//These are photo-related things that you can specify.
var thumb_width = 67;
var thumb_height = 50;
var photos_per_row = 5;