
/*
******************************************************************************************
*
* Multi-dimensional array containing all the info about each piece of art work organized by  
*
*  Gallery Name
*     Sub Gallery 1
*     Sub Gallery 2
*     true/false show gallery in random slideshow
*     Title 
*        [ Date
*         ,Size (height inches x width inches)
*         ,Medium
*         ,Price($/Sold/NFS/POR)
*         ,JPEG filename
*         ,Image width(pixels)
*         ,Image height(pixels)  ]
*
* Data can be retrieved as follows
*  alert("Gallery: "   + allWork[gallery][iGALLERY_NAME]);
*  alert("Gallery: "   + allWork[gallery][iGALLERY_LINE2]);
*  alert("Gallery: "   + allWork[gallery][iGALLERY_LINE3]);
*  alert("slideshow: "   + allWork[gallery][iSLIDESHOW]);   true=show gallery in slideshow false=skip it
*  alert("Title  : "   + allWork[gallery][iFIRST_TITLE + title][iTITLE_NAME]);
*  alert("SERIES#: "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iSERIES_NO]);
*  alert("Date   : "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iDATE]);
*  alert("Size   : "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iSIZE]);
*  alert("Medium : "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iMEDIUM]);
*  alert("Price  : "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iPRICE]);
*  alert("JPEG   : "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iJPEG]);
*  alert("IMG_WIDTH: " + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iIMAGE_WIDTH]);
*  alert("IMG_HT : "   + allWork[gallery][iFIRST_TITLE + title][iDETAIL_INFO][iIMAGE_HEIGHT]);
*
*  #galleries in the table            alert("#Galleries:" + (allWork.length - 1));
*  #paintings in a particular gallery alert("#Paintings:" + (allWork[gallery].length - iFIRST_TITLE));
*
*  to add new paintings, enter the info to the table in the appropiate gallery.
*  note: the size of each gallery is not hard coded (size is determined using the length property)
*        so adding new paintings will not affect the code (see above examples)
*   
*
*  note: make sure any hard breaks are coded as <br />  and not as <br/>
*  note: firefox browser does not work with # in the file name - must use %23 instead. \# does not work either
*        e.g. filename: Issues # VII.jpg   must be coded Issues %23 VII.jpg
*  note: firefox and ie browsers do not work with ' in the file name - must use %27 instead
*        e.g. filename: Charlie's Peonies.jpg must be coded Charlie%27s Peonies.jpb
*
******************************************************************************************
*/


// define current directory for images
var CURRENT_DIR       = "images/";
var IMAGE_DIR         = "";
//var SELECTED_SLIDES   = "";
var gImg = 43;
 
var iSlideShow_Gallery = 0;
var aSelected_Slides   = null;


// define index constants for each gallery

var iGALLERIES        = 0;
var iARTIST_INFO      = 1;
var iFIRST_GALLERY    = 4;
var iPACIFICA_EROTICA_GALLERY =  3;
var iPROJECT_PACIFICA_GALLERY =  2;

// define artist info constants 
var iHOME             = 4;
var iBIO              = 5;
var iRESUME           = 6;
var iSTATEMENT        = 7;
var iCONTACT          = 8;

/* not currently inuse
var iABSTRACT         = 2;
var iLLANDSCAPES      = 3;
var iENCAUSTICS       = 4;
var iEARLYWORK        = 5;
var iFLANDFLTREES     = 6;
var iPASTELLANDSCAPES = 7;
*/

// gallery / title  constants
var iGALLERY_NAME     = 0;
var iGALLERY_LINE2    = 1;
var iGALLERY_LINE3    = 2;
var iSLIDESHOW        = 3;
var iFIRST_TITLE      = 4;
//var iPACIFICA_EROTICA = 10;

// painting detail info constant
var iTITLE_NAME       = 0;
var iDETAIL_INFO      = 1;

// painting detail info constants
var iSERIES_NO        = 0;
var iDATE             = 1;
var iSIZE             = 2;
var iMEDIUM           = 3;
var iPRICE            = 4;
var iJPEG             = 5;
var iIMAGE_WIDTH      = 6;
var iIMAGE_HEIGHT     = 7;

// slideshow constants - determines which slideshow to display
var iRANDOM_PAINTING = 0;
var iPACIFICA_EROTICA = 1;
//var iPACIFICA_EROTICA = 9;

// Set slideShowSpeed (milliseconds) constant
var SLIDESHOW_SPEED = 5000;
var PACIFIC_EROTICA_SLIDESHOW_SPEED = 5000;

// Duration of crossfade (seconds) constant
var CROSS_FADE_DURATION = 3;

// reference to timer event 
var rTimer;

// define index variables (integer values)
var iGallery;  
var iTitle;
var iInfo;

var iRandomGallery;
var iRandomTitle;

/*
******************************************************************************************
*
*   Table of selected images for Pacifica_Erotica slideshow
*    as per Pam : eliminated following slides from slideshow
               gImg == 3  restored with new image
            || gImg == 5
            || gImg == 6
            || gImg == 8
            || gImg == 9
            || gImg == 15
            || gImg == 16
            || gImg == 17
            || gImg == 18
            || gImg == 20
            || gImg == 21
            || gImg == 22
            || gImg == 24
            || gImg == 25
            || gImg == 27
            || gImg == 28
            || gImg == 31
            || gImg == 33
            || gImg == 37
            || gImg == 38
            || gImg == 39
            || gImg == 40
******************************************************************************************
*/

/* as per Pam use slides   1(0),2(1),3(2),4(3),5(4),6(7),7(10),8(11),9(12)
                        ,x10(13),x11(14),12*(19),13*(23), 14(26),
                          15(29),x16(30),x17(32),18*(34),19*(35), 20(36), 21(41),22(42),23(43)

 12 and 13 to be placed after 14  
 18 and 19 to be placed after 20 

*/
var Pacifica_Erotica_selected_slides = new Array(  0, 1, 2, 3, 4      , 7
                                                 ,10,11,12                  ,26
                                                          ,19      ,23      ,29
                                                             ,36,34,35   
                                                    ,41,42,43
                                                );

/* as per Pam use slides 0,1,2,3,5,6,8,11,12,13,24,25,26,27,28,29  */
/* as per Pam use new slides 0-18 */
/* as per Pam remove slide #8(7), replace #14(13) with #18(17) */

var Pacifica_selected_slides         = new Array(  0, 1, 2, 3, 4, 5, 6   , 8, 9 
                                                 ,10,11,12,17,14,15,16   ,18
                                                 );



/*
******************************************************************************************
*
*   Table of all works of art
*
******************************************************************************************
*/
var allWork  = new Array(
 new Array( 
 "Gallery line1","Gallery line2","Gallery line3",false                
     ,new Array("TITLE"          
                ,new Array( "SERIES#"
                           ,"DATE"
                           ,"SIZE"
                           ,"MEDIUM"
                           ,"PRICE"
                           ,"JPEG"
                           ,"IMG_WIDTH","IMG_HT"))
  
)  // end gallery array field definitions - note: do not move 

,new Array(
 "Artist Info","Artist Info line2","Artist Info line3",false                   
     ,new Array("Self Protraits"
                ,new Array( "SERIES#"       
                           ,""     
                           ,""      
                           ,""             
                           ,"POR"   
                           ,"pamhome"
                           ,"372","444"))   
                           

     ,new Array("Biography"
                ,new Array( "SERIES#"
                           ,"DATE" 
                           ,"SIZE"  
                           ,"MEDIUM"       
                           ,"PRICE" 
                           ,"PamBio"      
                           ,"90","40"))

     ,new Array("Resume"         
                ,new Array( "SERIES#"
                           ,"DATE" 
                           ,"SIZE"  
                           ,"MEDIUM"       
                           ,"PRICE" 
                           ,"PamResume"   
                           ,"90","40"))

     ,new Array("Statement"      
                ,new Array( "SERIES#"
                           ,"DATE" 
                           ,"SIZE" 
                           ,"MEDIUM"        
                           ,"PRICE" 
                           ,"PamStatement"
                           ,"90","40"))

     ,new Array("Contact"        
                ,new Array( "SERIES#"
                           ,"DATE" 
                           ,"SIZE"  
                           ,"MEDIUM"       
                           ,"PRICE" 
                           ,"PamContact"  
                           ,"90","40"))

)  // end Artist Info - note: do not move  

,new Array(
 "Pacifica Erotica","Anatomy of a","Painting",false           
     ,new Array("slide0"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img0","512","384"))
     ,new Array("slide1"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img1","336","504"))
     ,new Array("slide2"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img2","336","504"))
     ,new Array("slide3"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img3","336","504"))
     ,new Array("slide4"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img4","576","384"))
     ,new Array("slide5"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img5","576","384"))
     ,new Array("slide6"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img6","576","384"))
     ,new Array("slide7"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img7","576","384"))
     ,new Array("slide8"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img8","576","384"))
     ,new Array("slide9"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img9","362","504"))
     ,new Array("slide10"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img10","576","384"))
     ,new Array("slide11"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img11","336","504"))
     ,new Array("slide12"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img12","336","504"))

     ,new Array("slide13"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img13","320","384"))
     ,new Array("slide14"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img14","576","384"))
     ,new Array("slide15"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img15","576","384"))
     ,new Array("slide16"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img16","336","504"))
     ,new Array("slide17"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img17","336","504"))
     ,new Array("slide18"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img18","576","384"))

     ,new Array("slide19"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img19","256","384"))
     ,new Array("slide20"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img20","256","384"))
     ,new Array("slide21"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img21","256","384"))
     ,new Array("slide22"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img22","256","384"))
     ,new Array("slide23"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img23","256","384"))
     ,new Array("slide24"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img24","256","384"))
     ,new Array("slide25"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img25","576","384"))
     ,new Array("slide26"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img26","256","384"))
     ,new Array("slide27"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img27","256","384"))
     ,new Array("slide28"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img28","256","384"))
     ,new Array("slide29"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img29","576","384"))
     ,new Array("slide30"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img30","512","384"))
     ,new Array("slide31"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img31","512","384"))
     ,new Array("slide32"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img32","512","384"))
     ,new Array("slide33"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img33","512","384"))
     ,new Array("slide34"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img34","512","384"))
     ,new Array("slide35"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img35","512","384"))
     ,new Array("slide36"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img36","512","384"))
     ,new Array("slide37"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img37","512","384"))
     ,new Array("slide38"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img38","512","384"))
     ,new Array("slide39"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img39","512","384"))
     ,new Array("slide40"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img40","512","384"))
     ,new Array("slide41"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img41","512","384"))
     ,new Array("slide42"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img42","512","384"))
     ,new Array("slide43"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img43","512","384"))


) //end Project Pacifica gallery - note do not move, this gallery will be skipped(see iFIRST_GALLERY)



,new Array(
 "Pacifica Erotica","Anatomy of a","Painting",false           
     ,new Array("slide0"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img0","512","384"))
     ,new Array("slide1"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img1","512","384"))
     ,new Array("slide2"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img2","512","384"))
     ,new Array("slide3"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img3","512","384"))
     ,new Array("slide4"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img4","512","384"))
     ,new Array("slide5"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img5","512","384"))
     ,new Array("slide6"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img6","512","384"))
     ,new Array("slide7"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img7","512","384"))
     ,new Array("slide8"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img8","512","384"))
     ,new Array("slide9"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img9","512","384"))
     ,new Array("slide10"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img10","512","384"))
     ,new Array("slide11"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img11","512","384"))
     ,new Array("slide12"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img12","512","384"))
     ,new Array("slide13"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img13","512","384"))
     ,new Array("slide14"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img14","512","384"))
     ,new Array("slide15"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img15","512","384"))
     ,new Array("slide16"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img16","512","384"))
     ,new Array("slide17"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img17","512","384"))
     ,new Array("slide18"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img18","512","384"))
     ,new Array("slide19"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img19","512","384"))
     ,new Array("slide20"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img20","512","384"))
     ,new Array("slide21"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img21","512","384"))
     ,new Array("slide22"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img22","512","384"))
     ,new Array("slide23"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img23","512","384"))
     ,new Array("slide24"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img24","512","384"))
     ,new Array("slide25"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img25","512","384"))
     ,new Array("slide26"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img26","512","384"))
     ,new Array("slide27"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img27","512","384"))
     ,new Array("slide28"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img28","512","384"))
     ,new Array("slide29"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img29","512","384"))
     ,new Array("slide30"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img30","512","384"))
     ,new Array("slide31"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img31","512","384"))
     ,new Array("slide32"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img32","512","384"))
     ,new Array("slide33"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img33","512","384"))
     ,new Array("slide34"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img34","512","384"))
     ,new Array("slide35"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img35","512","384"))
     ,new Array("slide36"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img36","512","384"))
     ,new Array("slide37"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img37","512","384"))
     ,new Array("slide38"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img38","512","384"))
     ,new Array("slide39"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img39","512","384"))
     ,new Array("slide40"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img40","512","384"))
     ,new Array("slide41"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img41","512","384"))
     ,new Array("slide42"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img42","512","384"))
     ,new Array("slide43"     ,new Array("SERIES#","2010" ,"40x40" ,"Oil"          ,"POR"  ,"PacificaEroticaImages/img43","512","384"))


) //end Pacifica Erotica gallery - note do not move, this gallery will be skipped(see iFIRST_GALLERY)

/*
 **********************************************************************************************
  All the galleries below this point may be re-ordered, and new galleries inserted, or appended
  as desired.  Do not change any galleries above this point.
 **********************************************************************************************
*/
/*
,new Array(
 "Pacifica and Guernica","","",false

     ,new Array("Pacifica-Guernica" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"" 
                           ,""  
                           ,"POR"  
                           ,"PacificaGuernica" 
                           ,"576","578"))

) //end Pacifica and Guernica gallery

,new Array(
 "Pacifica Front View","","",false

     ,new Array("Pacifica Front View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScaleFront" 
                           ,"576","324"))

) //end Pacifica Front View gallery

,new Array(
 "Pacifica Perspective View","","",false

     ,new Array("Pacifica Perspective View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScalePerspective" 
                           ,"576","324"))
             
) //end Pacifica Perspective View gallery


,new Array(
 "Pacifica Large View","","",false

     ,new Array("Pacifica Large View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScaleLarge" 
                           ,"576","324"))
             
) //end Pacifica Large View gallery
*/

,new Array(
 "Pacifica","","",false

     ,new Array("Pacifica-Guernica" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"" 
                           ,""  
                           ,"POR"  
                           ,"PacificaGuernica" 
                           ,"576","578"))

     ,new Array("Pacifica Front View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScaleFront" 
                           ,"576","324"))

     ,new Array("Pacifica Perspective View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScalePerspective" 
                           ,"576","324"))
             
     ,new Array("Pacifica Large View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScaleLarge" 
                           ,"576","324"))
              

) //end Pacifica gallery


,new Array(
 "Large Landscapes","","",false
/*
     ,new Array("Pacifica-Guernica" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"" 
                           ,""  
                           ,"POR"  
                           ,"PacificaGuernica" 
                           ,"576","578"))


     ,new Array("Pacifica Front View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScaleFront" 
                           ,"576","324"))

     ,new Array("Pacifica Perspective View" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"PacificaScalePerspective" 
                           ,"576","324"))
*/             
     ,new Array("Pacifica" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"138x300" 
                           ,"Acrylic on Poplin"  
                           ,"POR"  
                           ,"Pacifica" 
                           ,"576","384"))

     ,new Array("Pacifica - detail" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"" 
                           ,""  
                           ,"POR"  
                           ,"img11" 
                           ,"432","527"))

     ,new Array("Pacifica - detail" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"" 
                           ,""  
                           ,"POR"  
                           ,"img16" 
                           ,"360","540"))

     ,new Array("Pacifica - detail" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"" 
                           ,""  
                           ,"POR"  
                           ,"img13" 
                           ,"356","494"))

     ,new Array("Pacifica and Erotica" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"66x150" 
                           ,"Oil on Canvas"  
                           ,"POR"  
                           ,"Pacifica and Erotica" 
                           ,"512","384"))

     ,new Array("Somewhere on Route 114 - 2" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"72x48" 
                           ,"Oil on Canvas"          
                           ,"POR"
                           ,"Somewhere on Route 114 - 2"    
                           ,"380","570"))

     ,new Array("California Moon" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"42x42" 
                           ,"Oil on Canvas"    
                           ,"POR"  
                           ,"California Moon"
                           ,"530","501"))

     ,new Array("Dark Leaf Canopy" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"32x44" 
                           ,"Encaustic"  
                           ,"POR"  
                           ,"Dark Leaf Canopy"
                           ,"530","380"))

     ,new Array("East End Farms under a Rising Moon" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Canvas"
                           ,"POR"  
                           ,"East End Farms under a Rising Moon"  
                           ,"530","529"))

     ,new Array("Fly Me to the Moon"                 /* updated  photoshop*/
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Canvas"       
                           ,"NFS"   
                           ,"Fly Me to the Moon"   
                           ,"530","534"))

     ,new Array("Rain Steam and Speed"               /* updated photoshop */
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Linen"    
                           ,"POR"   
                           ,"Rain Steam and Speed"
                           ,"530","543"))

     ,new Array("Somewhere on Route 114" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"60x60" 
                           ,"Oil on Canvas"  
                           ,"POR"
                           ,"Somewhere on Route 114"
                           ,"530","542"))

     ,new Array("Sun-Up" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"29x29" 
                           ,"Oil on Linen"  
                           ,"POR"  
                           ,"Sun-Up"
                           ,"530","533"))

     ,new Array("The Brooklyn Hill" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Canvas"  
                           ,"POR"  
                           ,"The Brooklyn Hill"
                           ,"530","549"))

     ,new Array("Through the Woods"                      /* updated photoshop*/ 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Linen"  
                           ,"POR"  
                           ,"Through the Woods"
                           ,"530","529"))

     ,new Array("Winter Sunset-Albany" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Linen"  
                           ,"POR"  
                           ,"Winter Sunset-Albany" 
                           ,"530","517"))

) //end Large Landscape gallery



,new Array(
 "Early Works","From My Car Series","(1973-1979)",false
                    
     ,new Array("A Diner Upstate NY" 
                ,new Array( "#20"
                           ,"2010" 
                           ,"36x24" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"A Diner Upstate"
                           ,"420","511"))

     ,new Array("King Kullen at Dusk" 
                ,new Array( "#13"
                           ,"2010" 
                           ,"20x24" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"King Kullen at Dusk"
                           ,"420","308"))

     ,new Array("First Five, Main Street, Northport" 
                ,new Array( "#09"
                           ,"2010" 
                           ,"20x24" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"First Five Main St. Northport"
                           ,"450","345"))

     ,new Array("Indiana Skies" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"20x24" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"Indiana Skies"
                           ,"372","320"))

     ,new Array("Big Snow Main St. Northport" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x20" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"Big Snow Main Street"
                           ,"327","262"))

     ,new Array("Rain - Church and Main"
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"20x24" 
                           ,"Oil on linen"
                           ,"Sold"
                           ,"Rain - Church and Main"
                           ,"530","429"))

) //end From My Car Series

,new Array(
 "Early Works","Mother Earth Series","(1980-1989)",false 
                  
     ,new Array("Somewhere Upstate NY" 
                ,new Array( "#10"
                           ,"2010" 
                           ,"20x24" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"Somewhere Upstate NY"
                           ,"354","317"))

     ,new Array("Winter Upstate NY" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"24x24" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"Winter Upstate NY"
                           ,"485","440"))

     ,new Array("The Father,the Son and the Holy Ghost" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"72x48" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"The Father, The Son, and the Holy Ghost"
                           ,"400","555"))

     ,new Array("Cohorts at Midnight" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"24x30" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"Cohorts at Midnight"
                           ,"400","293"))

     ,new Array("On the Road" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"5x7" 
                           ,"Oil on canvas board"
                           ,"POR"
                           ,"On the Road"
                           ,"350","241"))

     ,new Array("Crescent Club Third Hole"
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"32x36" 
                           ,"Oil on linen"
                           ,"POR"
                           ,"Crescent Club Third Hole"
                           ,"530","398"))

) // end Mother Earth Series


,new Array(
 "Large Abstracts","","(1990-1995)",false
 
     ,new Array("Issues # II"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"54x36" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 II" 
                           ,"350","521"))

     ,new Array("Issues # III" 
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"54x36" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 III"
                           ,"400","482"))

     ,new Array("Issues # IV"                            /* updated photoshop */
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"74x60" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 IV" 
                           ,"400","487"))

     ,new Array("Issues # V"   
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"64x48" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 V"  
                           ,"400","538"))
          
     ,new Array("Issues # VII"                          /* updated enlarged*/
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x60" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 VII"
                           ,"440","351"))

     ,new Array("Issues # XI"                             /* updated enlarged*/
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"60x72" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 XI" 
                           ,"470","394"))

     ,new Array("Issues # XII"                           /* updated  enlarged*/
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"74x60" 
                           ,"Oil on canvas"
                           ,"POR"
                           ,"Issues %23 XII"
                           ,"470","388"))

) // end Large Abstracts Series


,new Array(
 "Full Moon","","",true
     ,new Array("1. Equinox Moon"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"10x10" 
                           ,"Oil on Canvas" 
                           ,"NFS"   
                           ,"1. Equinox Moon" 
                           ,"350","350"))

     ,new Array("2. Rising Moon"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"18x18" 
                           ,"Oil on Canvas" 
                           ,"NFS"   
                           ,"2. Rising Moon" 
                           ,"500","501"))

     ,new Array("2a. Blue Moon"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"24x24" 
                           ,"Oil on Linen" 
                           ,"NFS"   
                           ,"Blue Moon" 
                           ,"530","531"))

     ,new Array("3. October Moon"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"10x10" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"3. October Moon" 
                           ,"330","343"))

     ,new Array("4. October Moon Rising"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"10x10" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"4. October Moon Rising" 
                           ,"330","333"))

     ,new Array("5. Heading Home"                            /* updated photoshop */
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"18x18" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"5. Heading Home" 
                           ,"363","371"))

/* as per Pam do not display the following titles
  ******************************************************************
     ,new Array("6. Wheat Field on Elwood"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"18x18" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"6. Wheat Field on Elwood"
                           ,"330","330"))

     ,new Array("7. Fly Me to The Moon"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x20" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"7. Fly Me to The Moon"
                           ,"330","330"))

     ,new Array("8. Full Moon in the Catskills"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"20x30" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"8. Full Moon in the Catskills"
                           ,"330","330"))
  ******************************************************************
*/

     ,new Array("9. Full Moon Midnight"                       /* updated photoshop */
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"24x20" 
                           ,"Acrylic on Canvas" 
                           ,"NFS"   
                           ,"9. Full Moon Midnight"
                           ,"360","399"))

     ,new Array("10. December 21st Moonrise"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"10x10" 
                           ,"Pastel on Canson" 
                           ,"NFS"
                           ,"10. December 21st Moonrise"
                           ,"300","310"))

     ,new Array("13. December Equinox"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"10x10" 
                           ,"Pastel on Canson" 
                           ,"NFS"   
                           ,"13. December Equinox"
                           ,"300","307"))

     ,new Array("14. Silvery Moon Out East"                      /* updated photoshop */     
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"12x12" 
                           ,"Oil on Canvas" 
                           ,"NFS"   
                           ,"14. Silvery Moon Out East"
                           ,"325","330"))

     ,new Array("15. Equinox Moon II"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"12x12" 
                           ,"Oil on Canvas" 
                           ,"NFS"   
                           ,"15. Equinox Moon II"
                           ,"350","340"))

     ,new Array("17. Montauk Moon - Red Tide"      
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"60x60" 
                           ,"Encaustic, Oil on Canvas" 
                           ,"NFS"   
                           ,"17. Montauk Moon - Red Tide"
                           ,"530","527"))
     

) // end Full Moon Series



,new Array( 
 "Flowers and Flowering Trees","","",false
 
     ,new Array("Jude's Lilacs"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"15x15" 
                           ,"Oil on Linen"          
                           ,"POR"  
                           ,"Judes Lilacs"  
                           ,"320","317"))

     ,new Array("Arrangement in Red"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Oil on Linen"       
                           ,"NFS"   
                           ,"Arrangement in Red"   
                           ,"400","417"))

     ,new Array("Charlie's Peonies IV"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Oil on Linen"    
                           ,"POR"   
                           ,"Charlies Peonies IV" 
                           ,"400","384"))

     ,new Array("Harry's Peonies"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Oil on Linen"  
                           ,"Sold"  
                           ,"Harrys Peonies"    
                           ,"400","415"))

     ,new Array("Lily's Lilacs in Morning Light"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Oil on Canvas"          
                           ,"POR"  
                           ,"Lilys Lilacs in Morning Light"
                           ,"400","376"))

     ,new Array("Valentine Bouquet"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"40x30" 
                           ,"Oil on Linen"       
                           ,"NFS"   
                           ,"Valentine Bouquet"    
                           ,"430","544"))

     ,new Array("Jefferson's Cherry Trees I"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"48x48" 
                           ,"Oil on Canvas"  
                           ,"Sold"  
                           ,"Jefferson%27s Cherry Trees I"   
                           ,"566","552"))

     ,new Array("Jefferson's Cherry Trees II"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"12x14" 
                           ,"Oil on Linen"  
                           ,"Sold"  
                           ,"Jefferson%27s Cherry Trees II" 
                           ,"325","297"))

     ,new Array("Jefferson's Cherry Trees III"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"12x12" 
                           ,"Oil on Linen"  
                           ,"Sold"  
                           ,"Jefferson%27s Cherry Trees III" 
                           ,"300","282"))

     ,new Array("Jefferson's Cherry Trees IV"    
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Oil on Canvas"    
                           ,"POR"   
                           ,"Jefferson%27s Cherry Trees IV"  
                           ,"325","336"))


) //end Flowers and Flowering Trees gallery

,new Array( 
 "Sketches and Prints","","",false
                    
     ,new Array("At The Met"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"8x5" 
                           ,"Pen and Ink on Wove paper"          
                           ,"POR"  
                           ,"At The Met"
                           ,"330","485"))

     ,new Array("At the Metropolitan - VanGogh at Arles"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"8x5" 
                           ,"Pen and Ink on Wove paper"       
                           ,"NFS"   
                           ,"At the Metropolitan - VanGogh at Arles"    
                           ,"330","497"))

     ,new Array("Death Struggle"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"6x4" 
                           ,"Linocut"    
                           ,"POR"   
                           ,"Death Struggle"  
                           ,"330","434"))

     ,new Array("In the Bus Station - Mexico City"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"5x4" 
                           ,"Pen and Ink on Wove paper"  
                           ,"POR"  
                           ,"In the Bus Station - Mexico City"   
                           ,"330","418"))

     ,new Array("Romp"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"3x4" 
                           ,"Etching"          
                           ,"POR"  
                           ,"Romp" 
                           ,"330","279"))

     ,new Array("Some of the Jury - Margiotta Trial"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"8x6" ,"Pen and Ink"       
                           ,"NFS"   
                           ,"Some of the Jury - Margiotta Trial"    
                           ,"330","420"))

     ,new Array("The Man at the Next Table"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"4x5" 
                           ,"Pen and Ink on Wove paper"    
                           ,"POR"   
                           ,"The Man at the Next Table"
                           ,"330","224"))

     ,new Array("This is Jack 1"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"5x4" 
                           ,"Pen and Ink on Wove paper"  
                           ,"POR"  
                           ,"This is Jack 1"    
                           ,"330","495"))

     ,new Array("Some of the Jury - One Percent Trial"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"14x16" 
                           ,"Pastel Pencil and Felt Pen"  
                           ,"POR"  
                           ,"Some of the Jury - One Percent Trial"    
                           ,"530","396"))

     ,new Array("Student Witnesses - Adelphi Case"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"14x16" 
                           ,"Pastel Pencil"  
                           ,"POR"  
                           ,"Student Witnesses - Adelphi Case"    
                           ,"530","353"))
     
  
) //end Sketches and Prints gallery

,new Array( 
 "Digital Photography","Winter Grasses","",false
                    
     ,new Array("Chaos 001"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Color Print"          
                           ,"POR"  
                           ,"Chaos 001"
                           ,"360","359"))

     ,new Array("Chaos 002"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Color Print"          
                           ,"POR"  
                           ,"Chaos 002"
                           ,"360","360"))

     ,new Array("Chaos 003"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Color Print"          
                           ,"POR"  
                           ,"Chaos 003"
                           ,"360","361"))

     ,new Array("Chaos 004"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Color Print"          
                           ,"POR"  
                           ,"Chaos 004"
                           ,"360","360"))

     ,new Array("Chaos 005"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Color Print"          
                           ,"POR"  
                           ,"Chaos 005"
                           ,"360","366"))

     ,new Array("Winter grasses 001"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x16" 
                           ,"Color Print" 
                           ,"POR"  
                           ,"Winter grasses 001"
                           ,"360","362"))

     ,new Array("Winter grasses 003"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x16" 
                           ,"Color Print" 
                           ,"POR"  
                           ,"Winter grasses 003"
                           ,"360","360"))

     ,new Array("Winter grasses 004"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x16" 
                           ,"Color Print" 
                           ,"POR"  
                           ,"Winter grasses 004"
                           ,"360","356"))

     ,new Array("Winter grasses 005"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x16" 
                           ,"Color Print" 
                           ,"POR"  
                           ,"Winter grasses 005"
                           ,"360","372"))

     ,new Array("Winter grasses 006"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x16" 
                           ,"Color Print" 
                           ,"POR"  
                           ,"Winter grasses 006"
                           ,"360","358"))

     ,new Array("Winter grasses 007"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"16x16" 
                           ,"Color Print" 
                           ,"POR"  
                           ,"Winter grasses 007"
                           ,"360","361"))

) //end Digital Photography gallery




/* 
 **********************************************************************************************
   The following is a gallery template - which is commented out
   copy the template below and place it above this point. Then fill in the appropiate information
 **********************************************************************************************

,new Array( 
 "New Gallery Name","New Series Name","New Gallery SubTitle",false
                    
     ,new Array("New Title #1"  
                ,new Array( "SERIES#"               // series# if applicable
                           ,"2010"                  // year of painting
                           ,"30x30"                 // size of painting height inches x width inches 
                           ,"Medium"                // medium
                           ,"POR"                   // status: POR NFS SOLD Price etc
                           ,"Jpeg Image Filename"   // image file name
                           ,"360","359"))           // image size "width","height" in pixels

    ,new Array("New Title #2"  
                ,new Array( "SERIES#"
                           ,"2010" 
                           ,"30x30" 
                           ,"Medium"          
                           ,"POR"  
                           ,"Jpeg Image Filename"
                           ,"360","359"))

) //end New Gallery gallery

 **********************************************************************************************
  end new gallery template
 **********************************************************************************************
*/


);  //end allWork array





// show each gallery
//alert(allWork[2][iSLIDESHOW]);
/*
alert("#Galleries:" + (allWork.length - 1));  // = 6 

alert("gallery: "   + allWork[gallery][iGALLERY_NAME]);
alert("Title  : "   + allWork[gallery][title][iTITLE_NAME]);
alert("Series#: "   + allWork[gallery][title][iSERIES_NO]);
alert("Date   : "   + allWork[gallery][title][iDETAIL_INFO][iDATE]);
alert("Size   : "   + allWork[gallery][title][iDETAIL_INFO][iSIZE]);
alert("Medium : "   + allWork[gallery][title][iDETAIL_INFO][iMEDIUM]);
alert("Price  : "   + allWork[gallery][title][iDETAIL_INFO][iPRICE]);
alert("JPEG   : "   + allWork[gallery][title][iDETAIL_INFO][iJPEG]);
alert("imgWidt: "   + allWork[gallery][title][iDETAIL_INFO][iIMAGE_WIDTH]);
alert("imgHt  : "   + allWork[gallery][title][iDETAIL_INFO][iIMAGE_HEIGHT]);

var z = "";
for (i=1; i<allWork.length; i++) z=z + allWork[i][0] + ", " ;
 alert("gallery:" + z);

alert( "title:"
      + allWork[iPASTELLANDSCAPES][iFirst_TITLE + 2][iTITLE_NAME]
      + " Price:
      + allWork[iPASTELLANDSCAPES][iFirst_TITLE + 2][iDETAIL_INFO][iPRICE]
     );


alert("#Pastels:" + (allWork[iPASTELLANDSCAPES].length - 1));
alert("#Galleries:" + (allWork.length - 1));  
alert("Size   : "   + allWork[iPASTELLANDSCAPES][iTITLES][8][iDETAIL_INFO][iSIZE]);
alert("here");
alert(allWork[1][iGALLERY_NAME]);
alert(allWork[1][iFIRST_TITLE][iDETAIL_INFO][iJPEG]);
*/
