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

var the_green_man_family_inn_malton = [];
var theArray = the_green_man_family_inn_malton;

theArray.push(new Array("the-green-men-malton.jpg", "The Green Man Family Inn, Malton"));
theArray.push(new Array("bar-auto-green-man.jpg", "Bar Auto at The Green Man Family Inn, Malton"));
theArray.push(new Array("pool-room-green-man.jpg", "Pool Hall at The Green Man Family Inn, Malton"));


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

