var current = 18; var MAX = '18'; if (MAX != '') { var myPicture = new Array(MAX +1) myPicture[0] = ''; var myText = new Array(MAX +1) myText[0] = ''; myPicture[1] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803537.jpg'; myText[1] ='
'+'Double Double';
myPicture[2] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803547.jpg';
myText[2] =' '+'Double Double';
myPicture[3] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803557.jpg';
myText[3] =' '+'Double Double';
myPicture[4] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803687.jpg';
myText[4] =' '+'Single King';
myPicture[5] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803697.jpg';
myText[5] =' '+'Single King';
myPicture[6] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803707.jpg';
myText[6] =' '+'Single King';
myPicture[7] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803677.jpg';
myText[7] =' '+'Outdoor Pool';
myPicture[8] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803657.jpg';
myText[8] =' '+'Lounge/Bar';
myPicture[9] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803667.jpg';
myText[9] =' '+'Lounge/Bar';
myPicture[10] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803607.jpg';
myText[10] =' '+'Lobby';
myPicture[11] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803617.jpg';
myText[11] =' '+'Lobby';
myPicture[12] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803627.jpg';
myText[12] =' '+'Lobby';
myPicture[13] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803637.jpg';
myText[13] =' '+'Lobby';
myPicture[14] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803647.jpg';
myText[14] =' '+'Lobby';
myPicture[15] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803587.jpg';
myText[15] =' '+'Fitness Facility';
myPicture[16] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803597.jpg';
myText[16] =' '+'Fitness Facility';
myPicture[17] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803567.jpg';
myText[17] =' '+'Exterior';
myPicture[18] ='http://www.hotelprofessor.com/images/hotel-photos/MSY142/1429803577.jpg';
myText[18] =' '+'Exterior';
}
function goNext()
{
if (MAX != '')
{
if (current < MAX) { current++; }
else { current= 1; }
showPicture();
}
}
function goPrev()
{
if (MAX != '')
{
if (current > 1) { current--; }
else { current= MAX; }
showPicture();
}
}
function numberStringPhoto(pictureNumber)
{
current=pictureNumber;
showPicture();
}
function showPicture()
{
window.document.main_pic.src = myPicture[current];
document.getElementById('photoWord').innerHTML =myText[current];
document.getElementById('photoSentence').innerHTML =''+ current + ' of 18 Pictures
';
}