

				//	Track our page info:
				var pageSizeb31a8ab1d57d49da99cf7c68050b3f76 = 6;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link, title, description) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				  this.imgTitle = title;
				  this.imgDescription = description;
				}

				//	Displays a given page:
				function displayPageb31a8ab1d57d49da99cf7c68050b3f76(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabledb31a8ab1d57d49da99cf7c68050b3f76)
					{
						pageSizeb31a8ab1d57d49da99cf7c68050b3f76 = imgsb31a8ab1d57d49da99cf7c68050b3f76.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizeb31a8ab1d57d49da99cf7c68050b3f76;
					sliceEnd = sliceStart + pageSizeb31a8ab1d57d49da99cf7c68050b3f76;
				
					//	Slice the array:
					tempArr = imgsb31a8ab1d57d49da99cf7c68050b3f76.slice(sliceStart, sliceEnd);
					
					//	Rip through the array slice:
					for (i=0;i<tempArr.length;i++)
					{
                        txtToWrite = txtToWrite + "<div style='display: block; float: left; margin: 15px; width: 150px;'>";
                        txtToWrite = txtToWrite + "<div style='height:97px; text-align:center;'><a href='" + tempArr[i].imgLink + "' target='_blank'><img src='" + tempArr[i].imgSrc + "' border=0/></a></div>";
						txtToWrite = txtToWrite + "<div style='margin:15px 0 10px; text-align: center;'><strong>" + tempArr[i].imgTitle + "</strong></div>";
                        txtToWrite = txtToWrite + "<div>" + tempArr[i].imgDescription + "</div>";
                        txtToWrite = txtToWrite + "</div>";
					}

                    //  Add our 'clear div':
                    txtToWrite = txtToWrite + "<div style='clear: left;'></div>";
					
					var txtNavigation = "";

					if(pagingEnabledb31a8ab1d57d49da99cf7c68050b3f76)
					{
                        //  Start the list:
                        txtNavigation = txtNavigation + "<ul style='float: right; margin: 6px 15px 0 0; padding: 0; list-style: none;'>";

						//	Add our previous navigation:
						if(sliceStart > 0)
						{
                            txtNavigation = txtNavigation + "<li style='margin: 0 8px; display: block; float: left;'> <a style='background: url(http://images.onlinephotofiler.com/arrow-prev.gif) left center no-repeat; padding: 0 0 0 9px;' href='javascript:displayPageb31a8ab1d57d49da99cf7c68050b3f76(" + (pageNumber - 1) + ");'>Previous</a> </li>";
						}

                        //  Add the middle information:
                        txtNavigation = txtNavigation + "<li style='margin: 0 8px; display: block; float: left;'> <strong>" + (sliceStart + 1) + " to " + (sliceStart + tempArr.length) + "</strong> of <strong>" + imgsb31a8ab1d57d49da99cf7c68050b3f76.length + "</strong> </li>";
						
                        //  Add our next navigation:
						if(imgsb31a8ab1d57d49da99cf7c68050b3f76.length > sliceEnd)
						{
                            txtNavigation = txtNavigation + "<li style='margin: 0 8px; display: block; float: left;'> <a style='background: url(http://images.onlinephotofiler.com/arrow-next.gif) right center no-repeat;	padding: 0 9px 0 0;' href='javascript:displayPageb31a8ab1d57d49da99cf7c68050b3f76(" + (pageNumber + 1) + ");'>Next</a> </li>";
						}					
					}
					
					//	Get a reference to the place we're writing images to:
					var divWrapper = document.getElementById('imgsWrapperb31a8ab1d57d49da99cf7c68050b3f76');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtToWrite;

                    //	Get a reference to the place we're writing navigation to:
					var navWrapper = document.getElementById('navWrapperb31a8ab1d57d49da99cf7c68050b3f76');
					
					//	Clear out what's currently displayed:
					navWrapper.innerHTML = "";
					
					//	Write our text:
					navWrapper.innerHTML = txtNavigation;
				}

				//	Create our array:
				var imgsb31a8ab1d57d49da99cf7c68050b3f76 = new Array();

				
					//	The title:
					var photowebTitleb31a8ab1d57d49da99cf7c68050b3f76;
					photowebTitleb31a8ab1d57d49da99cf7c68050b3f76 = 'Hotel Rooms';
					
					var boolDisplayTitleb31a8ab1d57d49da99cf7c68050b3f76;
					boolDisplayTitleb31a8ab1d57d49da99cf7c68050b3f76 = true;
					
					var badgeLayoutb31a8ab1d57d49da99cf7c68050b3f76;
					badgeLayoutb31a8ab1d57d49da99cf7c68050b3f76 = 'Vertical';
					
					var pagingEnabledb31a8ab1d57d49da99cf7c68050b3f76;
					pagingEnabledb31a8ab1d57d49da99cf7c68050b3f76 = false;
						
					//	Add items to the array:
					
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0373_5d59c.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765089&mt=Photo', 'Dorm', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0272_db464.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765090&mt=Photo', 'Double', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0281_b6595.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765092&mt=Photo', 'Double', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0282_191dd.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765094&mt=Photo', 'Double', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0283_9c0c6.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765095&mt=Photo', 'Decoration', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0288_09bd7.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765097&mt=Photo', 'Single', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0289_f660b.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765098&mt=Photo', 'Double', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0302_8e407.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765100&mt=Photo', 'Triple', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0304_c54fb.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765102&mt=Photo', 'Triple', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0310_702e6.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765103&mt=Photo', 'Triple', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0311_ed84b.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765105&mt=Photo', 'Triple', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0360_a2814.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765107&mt=Photo', 'Dorm', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0362_b1ec1.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765108&mt=Photo', 'Dorm', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0363_688f8.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765110&mt=Photo', 'Dorm', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0367_33094.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765112&mt=Photo', 'Dorm', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0371_368ed.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765115&mt=Photo', 'Dorm', ''));
						imgsb31a8ab1d57d49da99cf7c68050b3f76.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_1/8/8/3/73881/DSCF0370_ce3bc.Thumbnail.jpg', 'http://photos.hotelpuertoviejocr.com/GalleryFilmstrip.aspx?gallery=225009&page=1&mid=6765113&mt=Photo', 'Dorm', ''));

                //  Gallery Holder
				document.write("<div style='margin: 10px; padding: 0;'>");

                //  Navigation 
				document.write("<div id='navWrapperb31a8ab1d57d49da99cf7c68050b3f76' style='margin: 0; padding: 0; height: 28px; background: #DEDEDE url(http://images.onlinephotofiler.com/header-bg.gif) left top repeat-x; border: 1px solid #A0A0A0;'></div>");

                //  Inner wrapper:
                document.write("<div style='padding: 0 0 20px 0; margin: 0; background: #; width: 100%;'>");

                //  Gallery Title
				document.write("<div id='titleWrapperb31a8ab1d57d49da99cf7c68050b3f76' style=\"font: 25px Georgia, 'Times New Roman', Times, serif; text-align: center; padding: 20px 0 5px; width: 100%;\"></div>");

                //  Pictures
				document.write("<div id='imgsWrapperb31a8ab1d57d49da99cf7c68050b3f76'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitleb31a8ab1d57d49da99cf7c68050b3f76)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapperb31a8ab1d57d49da99cf7c68050b3f76');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitleb31a8ab1d57d49da99cf7c68050b3f76 + "</strong>";
				}
				

			    document.write("<div style='margin:10px auto 10px auto;text-align:center;'><a href='https://www.godaddy.com/gdshop/photo/landing.asp?isc=OPFpowby' title='Learn more about online photo hosting' target='_blank'>Online Photo Hosting</a></div>");

			    

                //  End inner wrapper
				document.write("</div>");

                //  End Gallery Holder
				document.write("</div>");

				//	Display images from the first page:
				displayPageb31a8ab1d57d49da99cf7c68050b3f76(0);

				