

				//	Track our page info:
				var pageSize0130dc14a30646f8a6b6a655b4d7a3cf = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPage0130dc14a30646f8a6b6a655b4d7a3cf(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled0130dc14a30646f8a6b6a655b4d7a3cf)
					{
						pageSize = imgs0130dc14a30646f8a6b6a655b4d7a3cf.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize0130dc14a30646f8a6b6a655b4d7a3cf;
					sliceEnd = sliceStart + pageSize0130dc14a30646f8a6b6a655b4d7a3cf;
				
					//	Slice the array:
					tempArr = imgs0130dc14a30646f8a6b6a655b4d7a3cf.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(badgeLayout0130dc14a30646f8a6b6a655b4d7a3cf == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabled0130dc14a30646f8a6b6a655b4d7a3cf)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage0130dc14a30646f8a6b6a655b4d7a3cf(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgs0130dc14a30646f8a6b6a655b4d7a3cf.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPage0130dc14a30646f8a6b6a655b4d7a3cf(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapper0130dc14a30646f8a6b6a655b4d7a3cf');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgs0130dc14a30646f8a6b6a655b4d7a3cf = new Array();

				
					//	The title:
					var photowebTitle0130dc14a30646f8a6b6a655b4d7a3cf;
					photowebTitle0130dc14a30646f8a6b6a655b4d7a3cf = 'Graduation \x2f Other';
					
					var boolDisplayTitle0130dc14a30646f8a6b6a655b4d7a3cf;
					boolDisplayTitle0130dc14a30646f8a6b6a655b4d7a3cf = false;
					
					var badgeLayout0130dc14a30646f8a6b6a655b4d7a3cf;
					badgeLayout0130dc14a30646f8a6b6a655b4d7a3cf = 'Vertical';
					
					var pagingEnabled0130dc14a30646f8a6b6a655b4d7a3cf;
					pagingEnabled0130dc14a30646f8a6b6a655b4d7a3cf = false;
						
					//	Add items to the array:
					
						imgs0130dc14a30646f8a6b6a655b4d7a3cf.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_2/6/8/0/10862/052_9ec53.Large.jpg', 'http://photos.confectionsincake.com/GalleryFilmstrip.aspx?gallery=30020&page=1&mid=4646066&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#;width: 500px;'>");

				document.write("<div id='titleWrapper0130dc14a30646f8a6b6a655b4d7a3cf' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapper0130dc14a30646f8a6b6a655b4d7a3cf' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitle0130dc14a30646f8a6b6a655b4d7a3cf)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapper0130dc14a30646f8a6b6a655b4d7a3cf');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitle0130dc14a30646f8a6b6a655b4d7a3cf + "</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:
				displayPage0130dc14a30646f8a6b6a655b4d7a3cf(0);

				