function array (beg,size)
{
for (var i = beg; i < size; i++)
this[i]=0; //dummy value
this.length = size;
} 

function setpics()
{
current = 1;
first = 1;
last = 6;
caption = new array(1,11);
caption[1]= "The Rafael Town Center, with the Lighthouse Diner";
caption[2]= "The Lighthouse Diner - enjoying a meal outside";
caption[3]= "The Lighthouse Diner - lunch at the counter";
caption[4]= "The Lighthouse Diner - bar open at night";
caption[5]= "The Lighthouse Diner";
caption[6]= "People enjoying the sun on the Plaza";

}

