

				//	Track our page info:
				var pageSizedc7584b408594b79b3d7ac8b5618196a = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPagedc7584b408594b79b3d7ac8b5618196a(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnableddc7584b408594b79b3d7ac8b5618196a)
					{
						pageSize = imgsdc7584b408594b79b3d7ac8b5618196a.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizedc7584b408594b79b3d7ac8b5618196a;
					sliceEnd = sliceStart + pageSizedc7584b408594b79b3d7ac8b5618196a;
				
					//	Slice the array:
					tempArr = imgsdc7584b408594b79b3d7ac8b5618196a.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(badgeLayoutdc7584b408594b79b3d7ac8b5618196a == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnableddc7584b408594b79b3d7ac8b5618196a)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagedc7584b408594b79b3d7ac8b5618196a(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgsdc7584b408594b79b3d7ac8b5618196a.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagedc7584b408594b79b3d7ac8b5618196a(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapperdc7584b408594b79b3d7ac8b5618196a');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgsdc7584b408594b79b3d7ac8b5618196a = new Array();

				
					//	The title:
					var photowebTitledc7584b408594b79b3d7ac8b5618196a;
					photowebTitledc7584b408594b79b3d7ac8b5618196a = 'Relay for Life \x2708';
					
					var boolDisplayTitledc7584b408594b79b3d7ac8b5618196a;
					boolDisplayTitledc7584b408594b79b3d7ac8b5618196a = true;
					
					var badgeLayoutdc7584b408594b79b3d7ac8b5618196a;
					badgeLayoutdc7584b408594b79b3d7ac8b5618196a = 'Vertical';
					
					var pagingEnableddc7584b408594b79b3d7ac8b5618196a;
					pagingEnableddc7584b408594b79b3d7ac8b5618196a = false;
						
					//	Add items to the array:
					
						imgsdc7584b408594b79b3d7ac8b5618196a.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_2/7/1/6/46172/DSCN0082_7024e.Thumbnail.jpg', 'http://PhotoGallery.clearwaterdst.org/GalleryThumbnails.aspx?gallery=135298&page=1&mid=4583713&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#990000;width: 150px;'>");

				document.write("<div id='titleWrapperdc7584b408594b79b3d7ac8b5618196a' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapperdc7584b408594b79b3d7ac8b5618196a' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitledc7584b408594b79b3d7ac8b5618196a)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapperdc7584b408594b79b3d7ac8b5618196a');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitledc7584b408594b79b3d7ac8b5618196a + "</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:
				displayPagedc7584b408594b79b3d7ac8b5618196a(0);

				