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