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

var beauty_treatments_gallery_english_rose_hotels = [];
var theArray = beauty_treatments_gallery_english_rose_hotels;

theArray.push(new Array("royal-beauty-scarborough.jpg", "Royal Beauty at The Royal Hotel in Scarborough"));
theArray.push(new Array("royal-beauty-manicures.jpg", "Manicures are available at Royal Beauty, which is located on the first floor of The Royal Hotel, Scarborough"));
theArray.push(new Array("royal-beauty-pedicures.jpg", "Pedicures are available at Royal Beauty, which is located on the first floor of The Royal Hotel, Scarborough"));


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

