// JavaScript Document
//Back Bay Images Gallery
var blurb = new Array();
blurb[0]="Welcome"
blurb[1]="Exterior"
blurb[2]="Exterior"
blurb[3]="Main Entrance"
blurb[4]="Lobby"
blurb[5]="Upper Lobby"
blurb[6]="Gift Shop"
blurb[7]="Guest Room &ndash; Deluxe King"
blurb[8]="King Guest Room"
blurb[9]="Double Guest Room"
blurb[10]="Accessible Room"
blurb[11]="Accessible Room"
blurb[12]="Accessible Bathroom"
blurb[13]="Parlor Suite"											
blurb[14]="Fitness Center"
blurb[15]="Fitness Center Locker Room"
blurb[16]="Indoor Pool"											
blurb[17]="Boardroom"
blurb[18]="The Fenway Ballroom"
blurb[19]="The Maverick Room"
blurb[20]="The Belvedere Ballroom"
blurb[21]="Forty Dalton"
blurb[22]="Event"
blurb[23]="Ballroom"
blurb[24]="Catered Events"
blurb[25]="Ballroom Wedding"
blurb[26]="Attention to Detail"
blurb[27]="Adams A &amp; B"
blurb[28]="Belvedere Ballroom"
blurb[29]="Belvedere Classroom"
blurb[30]="Business Center"
blurb[31]="Copley"
blurb[32]="Mariner"
blurb[33]="Maverick Theater Style"
blurb[34]="Social Events Ballroom"
blurb[35]="Westminster"



var aryImages = new Array();
aryImages[0] = "/img/hbbb/phototour/exterior_corner.jpg";
aryImages[1] = "/img/hbbb/phototour/2760.jpg";  
aryImages[2] = "/img/hbbb/phototour/2768.jpg"; 
aryImages[3] = "/img/hbbb/phototour/exterior2.jpg"; 
aryImages[4] = "/img/hbbb/phototour/lobby1.jpg"; 
aryImages[5] = "/img/hbbb/phototour/upper-lobby.jpg"; 
aryImages[6] = "/img/hbbb/phototour/gift-shop.jpg"; 
aryImages[7] = "/img/hbbb/phototour/cornerroom2.jpg"; 
aryImages[8] = "/img/hbbb/phototour/king-guestroom.jpg";  
aryImages[9] = "/img/hbbb/phototour/double-guestroom.jpg";  
aryImages[10] = "/img/hbbb/phototour/accessible-room.jpg";  
aryImages[11] = "/img/hbbb/phototour/accessible-room2.jpg";  
aryImages[12] = "/img/hbbb/phototour/bathroom.jpg";  
aryImages[13] = "/img/hbbb/phototour/parlor-suite.jpg";  
aryImages[14] = "/img/hbbb/phototour/fitness-center.jpg";  
aryImages[15] = "/img/hbbb/phototour/fitness-center-locker-room.jpg";  
aryImages[16] = "/img/hbbb/phototour/pool2.jpg";  
aryImages[17] = "/img/hbbb/phototour/boardroom.jpg";  
aryImages[18] = "/img/hbbb/phototour/m_fenway.jpg";  
aryImages[19] = "/img/hbbb/phototour/m_maverick.jpg";  
aryImages[20] = "/img/hbbb/phototour/m_belvedere_classroom2.jpg";  
aryImages[21] = "/img/hbbb/phototour/DSC_2780.jpg";  
aryImages[22] = "/img/hbbb/phototour/2830.jpg";  
aryImages[23] = "/img/hbbb/phototour/2849.jpg";  
aryImages[24] = "/img/hbbb/phototour/DSC_2836.jpg";  
aryImages[25] = "/img/hbbb/phototour/DSC_2850.jpg";  
aryImages[26] = "/img/hbbb/phototour/DSC_2828.jpg";  
aryImages[27] = "/img/hbbb/phototour/adams-ab.jpg";  
aryImages[28] = "/img/hbbb/phototour/belvedere-ballroom.jpg";  
aryImages[29] = "/img/hbbb/phototour/belvedere-classroom.jpg";  
aryImages[30] = "/img/hbbb/phototour/business-center.jpg";  
aryImages[31] = "/img/hbbb/phototour/copley.jpg";  
aryImages[32] = "/img/hbbb/phototour/mariner.jpg";  
aryImages[33] = "/img/hbbb/phototour/maverick-theatre-style.jpg";  
aryImages[34] = "/img/hbbb/phototour/social-event-ballroom.jpg";  
aryImages[35] = "/img/hbbb/phototour/westminster.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;
}
