// JavaScript Document
var blurb = new Array();
blurb[0]="Welcome to the Hilton Boston Logan Airport"
blurb[1]="Lobby"
blurb[2]="Executive Lounge"
blurb[3]="Gift Shop"
blurb[4]="Guest Room - King"
blurb[5]="Double"
blurb[6]="Parlor Suite"
blurb[7]="Accessible Room"
blurb[8]="Accessible Room"
blurb[9]="Accessible Bathroom"
blurb[10]="Fitness Center"
blurb[11]="Weight Room"
blurb[12]="Indoor Pool"
blurb[13]="Business Center"
blurb[14]="Conference Suite"
blurb[15]="Dartmouth Conference"
blurb[16]="Dartmouth Conference"
blurb[17]="International Ballroom"
blurb[18]="International Ballroom"
blurb[19]="International Ballroom"
blurb[20]="New England Ballroom"
blurb[21]="New England Ballroom"
blurb[22]="New England Ballroom"
blurb[23]="Wellesley Meeting Conference"
blurb[24]="Wellesley Meeting Conference"
blurb[25]="Berkshires Restaurant"
blurb[26]="Executive Lounge Breakfast Buffet"
blurb[27]="Airport Lobby Dining"


var aryImages = new Array();
aryImages[0] = "/img/hbla/phototour/exterior.jpg";
aryImages[1] = "/img/hbla/phototour/lobby.jpg";
aryImages[2] = "/img/hbla/phototour/lounge_exec.jpg";
aryImages[3] = "/img/hbla/phototour/gift-shop.jpg";
aryImages[4] = "/img/hbla/phototour/room_king.jpg";
aryImages[5] = "/img/hbla/phototour/Logan_Double_large.jpg";
aryImages[6] = "/img/hbla/phototour/parlor-suite.jpg";
aryImages[7] = "/img/hbla/phototour/accesible-rm.jpg";
aryImages[8] = "/img/hbla/phototour/accessible-room.jpg";
aryImages[9] = "/img/hbla/phototour/bathroom.jpg";
aryImages[10] = "/img/hbla/phototour/Fitness_Center_large_new.jpg";
aryImages[11] = "/img/hbla/phototour/Weight_Room_large.jpg";
aryImages[12] = "/img/hbla/phototour/pool.jpg";
aryImages[13] = "/img/hbla/phototour/business-center.jpg";
aryImages[14] = "/img/hbla/phototour/conference-suite.jpg";
aryImages[15] = "/img/hbla/phototour/dartmouth-conference.jpg";
aryImages[16] = "/img/hbla/phototour/dartmouth2.jpg";
aryImages[17] = "/img/hbla/phototour/international-ballroom.jpg";
aryImages[18] = "/img/hbla/phototour/international-ballroom2.jpg";
aryImages[19] = "/img/hbla/phototour/international-ballroom3.jpg";
aryImages[20] = "/img/hbla/phototour/new-england-ballroom.jpg";
aryImages[21] = "/img/hbla/phototour/new-england-ballroom2.jpg";
aryImages[22] = "/img/hbla/phototour/new-england-ballroom3.jpg";
aryImages[23] = "/img/hbla/phototour/wellesley-meeting-conference.jpg";
aryImages[24] = "/img/hbla/phototour/wellesley-meeting-conference2.jpg";
aryImages[25] = "/img/hbla/phototour/Berkshireslarge_new.jpg";
aryImages[26] = "/img/hbla/phototour/buffet.jpg";
aryImages[27]= "/img/hbla/phototour/airport-lobby-dining.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;
}
