///////////////////////////////////////////////
//
// Create arrays for all of the gallery images
//
///////////////////////////////////////////////

var views_of_scarborough = [];
var theArray = views_of_scarborough;

theArray.push(new Array("View_01.jpg", "Lovely view over scarborough bay"));
theArray.push(new Array("View_03.jpg", "Lovely view over scarborough bay"));


// initialize all of the galleries once the dom is ready 
$(document).ready(function(){
initialize_gallery(views_of_scarborough, 'views_of_scarborough');
});

