/*
 * The Paintings array contains the list of paintings in the gallery. Each entry
 * is an array of ( name, size, tags ) The name is the painting title and image file name
 * both for thumb and gallery image. The size is obvious. Tags is a list of classes
 * applied to the painting div to allow view selection by tag.
 * Categories is an array of ( tab_id, tag ) pairs. tab_id is used as the element id for
 * tab links as well as the filename for the link image (minus the .jpg). The tag is
 * a class used to select sub-groups of painting thumbs for display
 */
var Categories = [ [ "All", "all" ], [ "Recent", "recent" ], [ "Giclee", "ga" ] ] ;
var DefaultCat = "recent";
var Paintings = [
		    //     Name             Size      Tags
            [ "Drift Creek",      '18"x23"', "recent" ],
            [ "Oregon Redwoods",  '25"x18"<br/>Giclee<br/>20"x 14&#189"', "recent ga" ],
            [ "Tanner Creek",     '16"x20"', "recent" ],
            [ "Cliff Trees",      '14"x21"<br/>Giclee<br/>14"x 20"', "ga" ],
            [ "Oregon Redwoods II",  '25"x18"', "recent" ],
            [ "Sitka and Salal",  '14"x16"', "recent" ],
            [ "Gorge Trees",      '20"x18"', "recent" ],
            [ "Roadside Stop",    '19"x15"', "sold" ],
            [ "Missing Branch",   '20"x16"', "" ],
            [ "Lewis River",      '16"x22"', "sold" ],
            [ "Maple Tree",       '21"x18"', ""  ],
            [ "Tree on Rock",     '19"x16"', "" ],
            [ "Lewis River II",   '16"x19"', "sold" ],
            [ "Heron",            '18"x20"', "" ],
            [ "Pathway",          '25"x 20"', "sold" ], 
            [ "Buntzen Lake",     '17"x 20"', ""  ],
            [ "Madrones",         '22"x 17"', ""  ],
            [ "Weathered Oak",    '21"x 17"', ""  ],
            [ "Beach Trail",      '17"x 21"', ""  ],
            [ "Horsetail Creek",  '16"x 13"', "sold" ],
            [ "Madrone Study",    '18"x 15"', "sold" ],
            [ "Shady Creek",      '15"x 12"', "sold" ],
            [ "Orchard",          '15"x 19"', ""  ],
            [ "Leaning Tree",     '24"x 18"', ""  ],
            [ "Out of Line",      '22"x 18"', ""  ],
            [ "Multnomah Creek",  '20"x 16"', ""  ],
            [ "Rock Face",        '17"x 25"', ""  ],
            [ "Cape Falcon",      '20"x 25"', ""  ],
            [ "Heading Back",     '22"x 18"<br/>Giclee<br/>19"x 16"', "ga"  ],
            [ "McLeay Park",      'Giclee<br/>20"x 15"<br/>26"x 19"', "ga"  ],
            [ "November",         '20"x15"<br/>Giclee', "ga"  ],
            [ "Blue Tree",        'Giclee<br/>20"x 16"', "ga"  ],
            [ "Willamette River", '18"x 21"', ""  ],
            [ "Basalt 2",         '22"x 17"', ""  ],
            [ "Eucalyptus",       '23"x18"', "sold" ],

            [ "Foster's Trees", '18"x 20"', "sold" ],
            [ "Friends",        '15"x 18"<br/>Giclee 14"x17"', "ga" ],
            [ "Timberline",     '27"x 20"', ""  ],
            [ "Wilson River",   '21"x 16"', ""  ],
            [ "Two Oaks",       '21"x 18"', ""  ],
            [ "Cape Meares",    '18"x 23"', ""  ]
		];



