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

var the_talbot_hotel_malton = [];
var theArray = the_talbot_hotel_malton;

theArray.push(new Array("the-talbot-hotel-malton.jpg", "The Talbot Hotel in Malton"));
theArray.push(new Array("fireplace-talbot-hotel-malt.jpg", "Fireplace at The Talbot Hotel, Malton"));
theArray.push(new Array("double-bedroom-talbot-hotel.jpg", "Double Bedroom at The Talbot Hotel, Malton"));


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

