﻿// JScript File

var arrGalleryNames;
var arrGalleryMaxImages;
var AvatarImage;

function LoadGallery(SelectedGallery)
{
    // This will load the gallery arrays with the appropriate information

    switch(SelectedGallery)
    {
        case 'f':
            // Load Vanessa's gallery information
            arrGalleryNames = ["","Knickers!","Lu Cozma","Edison","Boys of Summer","Squat","Alpha II","Paddington with MCK","On The Pull with MCK","Rock and Roll Girls with MCK"]
            arrGalleryMaxImages = [1,6,8,11,9,3,5,7,5,4]
            AvatarImage = "images/header_vst_fashion.jpg";
            break;
        case 'c':
            // Load Mark's gallery information
            arrGalleryNames = ["","Lifestyle","A1GP"]
            arrGalleryMaxImages = [1,5,13]
            AvatarImage = "images/header_vst_corporate.jpg"
            break;
        case 'p':
            // Load joint stuff
            arrGalleryNames = ["","An Evening with Richard Dorfman","'Broken' film stills","Vicki Psarias - Motion Picture Director","Script Reading for Broken","Vanya Strok of Gharani Strok"]
            arrGalleryMaxImages = [1,5,14,6,9,1]
            AvatarImage = "images/header_vst_personalities.jpg"
            break;
        default:
            // Anything else that doesn't fit above
            // This one shouldn't come up unless it's not called properly
    }
}