

				//	Track our page info:
				var pageSizee0bb2e01f4054ccaa2f8a1be5fa94260 = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPagee0bb2e01f4054ccaa2f8a1be5fa94260(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnablede0bb2e01f4054ccaa2f8a1be5fa94260)
					{
						pageSize = imgse0bb2e01f4054ccaa2f8a1be5fa94260.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizee0bb2e01f4054ccaa2f8a1be5fa94260;
					sliceEnd = sliceStart + pageSizee0bb2e01f4054ccaa2f8a1be5fa94260;
				
					//	Slice the array:
					tempArr = imgse0bb2e01f4054ccaa2f8a1be5fa94260.slice(sliceStart, sliceEnd);
					
					//	Rip through the array slice:
					for (i=0;i<tempArr.length;i++)
					{
						txtToWrite = txtToWrite + "<a href='" + tempArr[i].imgLink + "' target='_blank'><img src='" + tempArr[i].imgSrc + "' border=0></a>";
						if(badgeLayoute0bb2e01f4054ccaa2f8a1be5fa94260 == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnablede0bb2e01f4054ccaa2f8a1be5fa94260)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagee0bb2e01f4054ccaa2f8a1be5fa94260(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgse0bb2e01f4054ccaa2f8a1be5fa94260.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagee0bb2e01f4054ccaa2f8a1be5fa94260(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrappere0bb2e01f4054ccaa2f8a1be5fa94260');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgse0bb2e01f4054ccaa2f8a1be5fa94260 = new Array();

				
					//	The title:
					var photowebTitlee0bb2e01f4054ccaa2f8a1be5fa94260;
					photowebTitlee0bb2e01f4054ccaa2f8a1be5fa94260 = '2009 - East Harlem Reunion';
					
					var boolDisplayTitlee0bb2e01f4054ccaa2f8a1be5fa94260;
					boolDisplayTitlee0bb2e01f4054ccaa2f8a1be5fa94260 = true;
					
					var badgeLayoute0bb2e01f4054ccaa2f8a1be5fa94260;
					badgeLayoute0bb2e01f4054ccaa2f8a1be5fa94260 = 'Vertical';
					
					var pagingEnablede0bb2e01f4054ccaa2f8a1be5fa94260;
					pagingEnablede0bb2e01f4054ccaa2f8a1be5fa94260 = false;
						
					//	Add items to the array:
					
						imgse0bb2e01f4054ccaa2f8a1be5fa94260.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_8/0/4/1/21408/186_ad2d4.Large.jpg', 'http://EastHarlemPhotos.theoldneighborhoodonline.com/GallerySlideshow.aspx?gallery=194464&page=1&mid=6493058&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#;width: 500px;'>");

				document.write("<div id='titleWrappere0bb2e01f4054ccaa2f8a1be5fa94260' style='margin:auto;'></div>");

				document.write("<div id='imgsWrappere0bb2e01f4054ccaa2f8a1be5fa94260' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitlee0bb2e01f4054ccaa2f8a1be5fa94260)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrappere0bb2e01f4054ccaa2f8a1be5fa94260');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitlee0bb2e01f4054ccaa2f8a1be5fa94260 + "</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>");

			    

				document.write("</div>");

				//	Display images from the first page:
				displayPagee0bb2e01f4054ccaa2f8a1be5fa94260(0);

				