// JavaScript Document
//Back Bay Images Gallery
var blurb = new Array();
blurb[0]="Welcome to DoubleTree by Hilton Hotel Boston - Downtown"
blurb[1]="The Lobby"
blurb[2]="The Lobby"
blurb[3]="Standard Room - King Bed"
blurb[4]="One Bedroom Suite - King Bed"
blurb[5]="One Bedroom Suite - King Bed"
blurb[6]="Junior Suite - King Bed"
blurb[7]="On Site Sports Complex - YMCA"
blurb[8]="On Site Sports Complex - YMCA"
blurb[9]="The Indoor Pool"
blurb[10]="The White Rose Room"
blurb[11]="The Cherry Blossom Room"
blurb[12]="Private Meeting Room"
blurb[13]="The Lobby Lounge"
blurb[14]="Wisteria Restaurant & Bar"

/*
blurb[6]="Fitness Room"
blurb[7]="Fitness Area Locker Room"
blurb[8]="Indoor Pool"
blurb[9]="The Board Room"
blurb[10]="The Fenway Ballroom"
blurb[11]="The Maverick Room"
blurb[12]="The Belvedere Room"
blurb[13]="Boodles Restaurant & Bar" */

var aryImages = new Array();
aryImages[0] = "/img/dhbd/phototour/exterior.jpg";
aryImages[1] = "/img/dhbd/phototour/lobby.jpg";
aryImages[2] = "/img/dhbd/phototour/lobby2.jpg";
aryImages[3] = "/img/dhbd/phototour/room_king_standard.jpg";
aryImages[4] = "/img/dhbd/phototour/suite_king.jpg";
aryImages[5] = "/img/dhbd/phototour/suite_onebedroom2.jpg";
aryImages[6] = "/img/dhbd/phototour/suite_junior.jpg";
aryImages[7] = "/img/dhbd/phototour/fitness.jpg";
aryImages[8] = "/img/dhbd/phototour/YMCA2.jpg";
aryImages[9] = "/img/dhbd/phototour/pool.jpg";
aryImages[10] = "/img/dhbd/phototour/m_whiterose.jpg";
aryImages[11] = "/img/dhbd/phototour/m_cherryblossom.jpg";
aryImages[12] = "/img/dhbd/phototour/privateroom.jpg";
aryImages[13] = "/img/dhbd/phototour/dining_lobby.jpg";
aryImages[14] = "/img/dhbd/phototour/wisteria.jpg";

/*
aryImages[6] = "Logan_Airport/imgs/phototour/fitness_roomc2.jpg";
aryImages[7] = "Logan_Airport/imgs/phototour/fitness.jpg";
aryImages[8] = "Logan_Airport/imgs/phototour/pool2.jpg";
aryImages[9] = "Logan_Airport/imgs/phototour/m_boardroom.jpg";
aryImages[10] = "Logan_Airport/imgs/phototour/m_fenway.jpg";
aryImages[11] = "Logan_Airport/imgs/phototour/m_maverick.jpg";
aryImages[12] = "Logan_Airport/imgs/phototour/m_belvedere_classroom.jpg";
aryImages[13] = "Logan_Airport/imgs/phototour/restaurant_bar.jpg";
*/

for (i=0; i < aryImages.length; i++) {
var preload = new Image();
preload.src = aryImages[i];
}


function swap(imgIndex) {
document['imgMain'].src = aryImages[imgIndex];
TheText = blurb[imgIndex];
document.getElementById('blurbarea').innerHTML=TheText;
}
