

				//	Track our page info:
				var pageSize3cd86d2c48df4b7f9627290e0a28faca = 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 displayPage3cd86d2c48df4b7f9627290e0a28faca(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled3cd86d2c48df4b7f9627290e0a28faca)
					{
						pageSize3cd86d2c48df4b7f9627290e0a28faca = imgs3cd86d2c48df4b7f9627290e0a28faca.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize3cd86d2c48df4b7f9627290e0a28faca;
					sliceEnd = sliceStart + pageSize3cd86d2c48df4b7f9627290e0a28faca;
				
					//	Slice the array:
					tempArr = imgs3cd86d2c48df4b7f9627290e0a28faca.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(pagingEnabled3cd86d2c48df4b7f9627290e0a28faca)
					{
                        //  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:displayPage3cd86d2c48df4b7f9627290e0a28faca(" + (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>" + imgs3cd86d2c48df4b7f9627290e0a28faca.length + "</strong> </li>";
						
                        //  Add our next navigation:
						if(imgs3cd86d2c48df4b7f9627290e0a28faca.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:displayPage3cd86d2c48df4b7f9627290e0a28faca(" + (pageNumber + 1) + ");'>Next</a> </li>";
						}					
					}
					
					//	Get a reference to the place we're writing images to:
					var divWrapper = document.getElementById('imgsWrapper3cd86d2c48df4b7f9627290e0a28faca');
					
					//	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('navWrapper3cd86d2c48df4b7f9627290e0a28faca');
					
					//	Clear out what's currently displayed:
					navWrapper.innerHTML = "";
					
					//	Write our text:
					navWrapper.innerHTML = txtNavigation;
				}

				//	Create our array:
				var imgs3cd86d2c48df4b7f9627290e0a28faca = new Array();

				
					//	The title:
					var photowebTitle3cd86d2c48df4b7f9627290e0a28faca;
					photowebTitle3cd86d2c48df4b7f9627290e0a28faca = 'Listed Properties';
					
					var boolDisplayTitle3cd86d2c48df4b7f9627290e0a28faca;
					boolDisplayTitle3cd86d2c48df4b7f9627290e0a28faca = true;
					
					var badgeLayout3cd86d2c48df4b7f9627290e0a28faca;
					badgeLayout3cd86d2c48df4b7f9627290e0a28faca = 'Vertical';
					
					var pagingEnabled3cd86d2c48df4b7f9627290e0a28faca;
					pagingEnabled3cd86d2c48df4b7f9627290e0a28faca = false;
						
					//	Add items to the array:
					
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS01_8a4e1.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9010890&mt=Photo', '8458 Raintree Ave', '6458965-\x24264,900 4BR 3BA 2CG Large patio...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS02_0e212.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9010937&mt=Photo', '12356 Oak Ridge St', '6552348-\x24279,900 5BR 3 1\x2f2BA 2CG Beautiful entry...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS03_ff86d.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9010942&mt=Photo', '2564 Big Oak Court', '6485974-\x24359,900 5BR 5BA 2CG Great family home...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS04_e79b9.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9010966&mt=Photo', '8453 Woodbridge St', '65123481-\x24129,900 3BR 2BA 2CG Great starter...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS05_74c22.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9011003&mt=Photo', '12489 Howard Lane', '6489621-\x24399,900 5BR 4BA 2CG Bright entry...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS06_6f0e1.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9011025&mt=Photo', '4578 Tanner St', '6495211-\x24349,900 4BR 4BA 3CG Grand living area...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS07_62089.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9011041&mt=Photo', '5487 Wyatt Ave', '6457412-\x2489,900 2BR 2BA 1CG Great location, take a look...'));
						imgs3cd86d2c48df4b7f9627290e0a28faca.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/3/8/0/100836/MLSS08_e3e5a.Thumbnail.jpg', 'http://photos.mls-sales.com/GalleryFilmstrip.aspx?gallery=265375&page=1&mid=9011055&mt=Photo', '12489 Dylan St', '6478963-\x24289,900 4BR 4BA 3CG Large back yard...'));

                //  Gallery Holder
				document.write("<div style='margin: 10px; padding: 0;'>");

                //  Navigation 
				document.write("<div id='navWrapper3cd86d2c48df4b7f9627290e0a28faca' 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: #FFFFCC; width: 100%;'>");

                //  Gallery Title
				document.write("<div id='titleWrapper3cd86d2c48df4b7f9627290e0a28faca' style=\"font: 25px Georgia, 'Times New Roman', Times, serif; text-align: center; padding: 20px 0 5px; width: 100%;\"></div>");

                //  Pictures
				document.write("<div id='imgsWrapper3cd86d2c48df4b7f9627290e0a28faca'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle3cd86d2c48df4b7f9627290e0a28faca)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper3cd86d2c48df4b7f9627290e0a28faca');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle3cd86d2c48df4b7f9627290e0a28faca + "</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:
				displayPage3cd86d2c48df4b7f9627290e0a28faca(0);

				