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 = 11;
caption = new array(1,11);
caption[1]= "The Rafael Town Center, with the Lighthouse Diner";
caption[2]= "The Lighthouse Diner - enjoying a meal inside";
caption[3]= "The Lighthouse Diner - dining by the lighthouses";
caption[4]= "The Lighthouse Diner - plaza dining at night";
caption[5]= "The Lighthouse Diner - in the sunshine";
caption[6]= "You can enjoy your meal at the counter";
caption[7]= "&quot;Maritime&quot; dining at The Lighthouse Diner";
caption[8]= "Have a drink or a snack at the bar";
caption[9]= "The Lighthouse Diner - socializing at the bar";
caption[10]= "The Town Center Plaza";
caption[11]= "People enjoying the sun on the Plaza";
}
