

				//	Track our page info:
				var pageSizefa1cbd437df94e098c1c2849e58651c3 = 4;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				}

				//	Displays a given page:
				function displayPagefa1cbd437df94e098c1c2849e58651c3(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabledfa1cbd437df94e098c1c2849e58651c3)
					{
						pageSize = imgsfa1cbd437df94e098c1c2849e58651c3.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSizefa1cbd437df94e098c1c2849e58651c3;
					sliceEnd = sliceStart + pageSizefa1cbd437df94e098c1c2849e58651c3;
				
					//	Slice the array:
					tempArr = imgsfa1cbd437df94e098c1c2849e58651c3.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(badgeLayoutfa1cbd437df94e098c1c2849e58651c3 == 'Vertical')
						{
							//	Add a hard break:
							txtToWrite = txtToWrite + "<br />";
						}
					}
					
					var txtNavigation = "";

					if(pagingEnabledfa1cbd437df94e098c1c2849e58651c3)
					{
						//	Add our navigation, using the information we know:
						if(sliceStart > 0)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagefa1cbd437df94e098c1c2849e58651c3(" + (pageNumber - 1) + ");'>Previous images</a>";
						}
						
						if(imgsfa1cbd437df94e098c1c2849e58651c3.length > sliceEnd)
						{
							txtNavigation = txtNavigation + "<a href='javascript:displayPagefa1cbd437df94e098c1c2849e58651c3(" + (pageNumber + 1) + ");'>Next images</a>";
						}					
					}
					
					//	Get a reference to the place we're writing to:
					var divWrapper = document.getElementById('imgsWrapperfa1cbd437df94e098c1c2849e58651c3');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtNavigation + "<br>" + txtToWrite;
				}

				//	Create our array:
				var imgsfa1cbd437df94e098c1c2849e58651c3 = new Array();

				
					//	The title:
					var photowebTitlefa1cbd437df94e098c1c2849e58651c3;
					photowebTitlefa1cbd437df94e098c1c2849e58651c3 = 'HookSet Girls';
					
					var boolDisplayTitlefa1cbd437df94e098c1c2849e58651c3;
					boolDisplayTitlefa1cbd437df94e098c1c2849e58651c3 = true;
					
					var badgeLayoutfa1cbd437df94e098c1c2849e58651c3;
					badgeLayoutfa1cbd437df94e098c1c2849e58651c3 = 'Vertical';
					
					var pagingEnabledfa1cbd437df94e098c1c2849e58651c3;
					pagingEnabledfa1cbd437df94e098c1c2849e58651c3 = false;
						
					//	Add items to the array:
					
						imgsfa1cbd437df94e098c1c2849e58651c3.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_4/9/2/8/8294/n_copy.Thumbnail.jpg', 'http://braggingboard.thehookset.com/GalleryFilmstrip.aspx?gallery=23435&page=1&mid=810987&mt=Photo'));

				document.write("<div class='photowebWrapper' style='padding:5px;text-align:center;background-color:#C608BB;width: 150px;'>");

				document.write("<div id='titleWrapperfa1cbd437df94e098c1c2849e58651c3' style='margin:auto;'></div>");

				document.write("<div id='imgsWrapperfa1cbd437df94e098c1c2849e58651c3' style='margin:auto;'></div>");
				
				
				//	Display the title if we're supposed to:
				if(boolDisplayTitlefa1cbd437df94e098c1c2849e58651c3)
				{
					//	Get a reference to the place we're writing to:
					var divTitleWrapper = document.getElementById('titleWrapperfa1cbd437df94e098c1c2849e58651c3');
					
					//	Clear out what's currently displayed:
					divTitleWrapper.innerHTML = "";
					
					//	Write our text:
					divTitleWrapper.innerHTML = "<strong>" + photowebTitlefa1cbd437df94e098c1c2849e58651c3 + "</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:
				displayPagefa1cbd437df94e098c1c2849e58651c3(0);

				