

			//	Track our page info:
				var pageSize22431a340d474a2996b9f4b4b26f87e7 = 6;
				
				//	Constructor for 'photoWebImage'
				function photoWebImage(src, link, title, description) 
				{
				  this.imgSrc = src;
				  this.imgLink = link;
				  this.imgTitle = title;
				  this.imgDescription = description;
				}

				//	Displays a given page:
				function displayPage22431a340d474a2996b9f4b4b26f87e7(pageNumber)
				{
					//	Our string that we'll eventually write:
					var txtToWrite = "";
					
					//	If paging is not enabled, then just make our pagesize = image count
					if(!pagingEnabled22431a340d474a2996b9f4b4b26f87e7)
					{
						pageSize22431a340d474a2996b9f4b4b26f87e7 = imgs22431a340d474a2996b9f4b4b26f87e7.length;
					}

					//	Get our slice start and end
					sliceStart = pageNumber * pageSize22431a340d474a2996b9f4b4b26f87e7;
					sliceEnd = sliceStart + pageSize22431a340d474a2996b9f4b4b26f87e7;
				
					//	Slice the array:
					tempArr = imgs22431a340d474a2996b9f4b4b26f87e7.slice(sliceStart, sliceEnd);
					
					//	Rip through the array slice:
					for (i=0;i<tempArr.length;i++)
					{
                        txtToWrite = txtToWrite + "<div style='display: block; float: left; margin: 15px; width: 150px;'>";
                        txtToWrite = txtToWrite + "<div style='height:97px; text-align:center;'><a href='" + tempArr[i].imgLink + "' target='_blank'><img src='" + tempArr[i].imgSrc + "' border=0/></a></div>";
						txtToWrite = txtToWrite + "<div style='margin:15px 0 10px; text-align: center;'><strong>" + tempArr[i].imgTitle + "</strong></div>";
                        txtToWrite = txtToWrite + "<div>" + tempArr[i].imgDescription + "</div>";
                        txtToWrite = txtToWrite + "</div>";
					}

                    //  Add our 'clear div':
                    txtToWrite = txtToWrite + "<div style='clear: left;'></div>";
					
					var txtNavigation = "";

					if(pagingEnabled22431a340d474a2996b9f4b4b26f87e7)
					{
                        //  Start the list:
                        txtNavigation = txtNavigation + "<ul style='float: right; margin: 6px 15px 0 0; padding: 0; list-style: none;'>";

						//	Add our previous navigation:
						if(sliceStart > 0)
						{
                            txtNavigation = txtNavigation + "<li style='margin: 0 8px; display: block; float: left;'> <a style='background: url(http://images.onlinephotofiler.com/arrow-prev.gif) left center no-repeat; padding: 0 0 0 9px;' href='javascript:displayPage22431a340d474a2996b9f4b4b26f87e7(" + (pageNumber - 1) + ");'>Previous</a> </li>";
						}

                        //  Add the middle information:
                        txtNavigation = txtNavigation + "<li style='margin: 0 8px; display: block; float: left;'> <strong>" + (sliceStart + 1) + " to " + (sliceStart + tempArr.length) + "</strong> of <strong>" + imgs22431a340d474a2996b9f4b4b26f87e7.length + "</strong> </li>";
						
                        //  Add our next navigation:
						if(imgs22431a340d474a2996b9f4b4b26f87e7.length > sliceEnd)
						{
                            txtNavigation = txtNavigation + "<li style='margin: 0 8px; display: block; float: left;'> <a style='background: url(http://images.onlinephotofiler.com/arrow-next.gif) right center no-repeat;	padding: 0 9px 0 0;' href='javascript:displayPage22431a340d474a2996b9f4b4b26f87e7(" + (pageNumber + 1) + ");'>Next</a> </li>";
						}					
					}
					
					//	Get a reference to the place we're writing images to:
					var divWrapper = document.getElementById('imgsWrapper22431a340d474a2996b9f4b4b26f87e7');
					
					//	Clear out what's currently displayed:
					divWrapper.innerHTML = "";
					
					//	Write our text:
					divWrapper.innerHTML = txtToWrite;

                    //	Get a reference to the place we're writing navigation to:
					var navWrapper = document.getElementById('navWrapper22431a340d474a2996b9f4b4b26f87e7');
					
					//	Clear out what's currently displayed:
					navWrapper.innerHTML = "";
					
					//	Write our text:
					navWrapper.innerHTML = txtNavigation;
				}

				//	Create our array:
				var imgs22431a340d474a2996b9f4b4b26f87e7 = new Array();

			
				//	The title:
				var photowebTitle22431a340d474a2996b9f4b4b26f87e7;
				photowebTitle22431a340d474a2996b9f4b4b26f87e7 = 'tharp';
			
				var boolDisplayTitle22431a340d474a2996b9f4b4b26f87e7;
				boolDisplayTitle22431a340d474a2996b9f4b4b26f87e7 = true;
				
				var badgeLayout22431a340d474a2996b9f4b4b26f87e7;
				badgeLayout22431a340d474a2996b9f4b4b26f87e7 = 'Vertical';
				
				var pagingEnabled22431a340d474a2996b9f4b4b26f87e7;
				pagingEnabled22431a340d474a2996b9f4b4b26f87e7 = false;
					
				//	Add items to the array:
				
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/95a06cfc11c149289ff78674224d951f.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558335&mt=Photo', '20091204_0013', 'Wrestle Off - Eric Peissig vs Brandt Tharp'));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/7b5f0a1241b849269c460e4916123942.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558336&mt=Photo', '20091204_0015', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/af71d99e8e9d45e98b848e30c2576422.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558337&mt=Photo', '20091204_0017', 'Tharp and Coach LaBuda \x28football\x29'));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/e12cce2c76e541e08c9584030ad9bcb5.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558353&mt=Photo', '20091204_0049', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/e5bdc079ac4e403c8de41d2b70182b31.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558355&mt=Photo', '20091204_0053', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/3089204d2679463c821191a6347c90ad.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558356&mt=Photo', '20091204_0055', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/3c1af933a22d4b57a85d9cc072562bd6.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558358&mt=Photo', '20091204_0059', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/5b2479da3a0b4ff7951c4ac9e436d75d.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558359&mt=Photo', '20091204_0061', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/c93f36471a8b41e298d1e3ba160301ba.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9558360&mt=Photo', '20091204_0063', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/1105b4f23fcd45588a40f3f16862d717.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625684&mt=Photo', '20091204_0012', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/aac5da77b2454683849e587285423d85.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625685&mt=Photo', '20091204_0014', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/d9aca9fa554e443690117c167aa08726.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625706&mt=Photo', '20091204_0052', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/e5ab4346c7484262a81a9693bd593704.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625709&mt=Photo', '20091204_0056', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/5585e02f3770429cb391fc13405ba0c9.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625710&mt=Photo', '20091204_0058', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/e8021bde2bc7467eb36d88d0834ebc48.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625711&mt=Photo', '20091204_0060', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/7bd09ac722be44fc9759741995142b68.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625712&mt=Photo', '20091204_0062', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/8343eef4cd4f47bd9dc542b615719fdf.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625713&mt=Photo', '20091204_0064', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/625e54376cdb4404bcef23e5c93713cc.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625734&mt=Photo', '20091204_0106', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/6ddc99dedac047e58024827407a9f035.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9625735&mt=Photo', '20091204_0108', ''));
				imgs22431a340d474a2996b9f4b4b26f87e7.push(new photoWebImage('http://app.onlinephotofiler.com/Images/A_6/2/9/9/99926/9afe69d744414b4489f194f9986e853a.Small.jpg', 'http://photos.menomoniewrestling.com/TagFilmstrip.aspx?page=1&tag=23733&mid=9925569&mt=Photo', '435', ''));

			//  Gallery Holder
			document.write("<div style='margin: 10px; padding: 0;'>");

            //  Navigation 
			document.write("<div id='navWrapper22431a340d474a2996b9f4b4b26f87e7' style='margin: 0; padding: 0; height: 28px; background: #DEDEDE url(http://images.onlinephotofiler.com/header-bg.gif) left top repeat-x; border: 1px solid #A0A0A0;'></div>");

            //  Inner wrapper:
            document.write("<div style='padding: 0 0 20px 0; margin: 0; background: #640700; width: 100%;'>");

            //  Gallery Title
			document.write("<div id='titleWrapper22431a340d474a2996b9f4b4b26f87e7' style=\"font: 25px Georgia, 'Times New Roman', Times, serif; text-align: center; padding: 20px 0 5px; width: 100%;\"></div>");

            //  Pictures
			document.write("<div id='imgsWrapper22431a340d474a2996b9f4b4b26f87e7'></div>");
			
				
			//	Display the title if we're supposed to:
			if(boolDisplayTitle22431a340d474a2996b9f4b4b26f87e7)
			{
				//	Get a reference to the place we're writing to:
				var divTitleWrapper = document.getElementById('titleWrapper22431a340d474a2996b9f4b4b26f87e7');
				
				//	Clear out what's currently displayed:
				divTitleWrapper.innerHTML = "";
				
				//	Write our text:
				divTitleWrapper.innerHTML = "<strong>" + photowebTitle22431a340d474a2996b9f4b4b26f87e7 + "</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>");

		    

            //  End inner wrapper
            document.write("</div>");

			//  End Gallery Holder
			document.write("</div>");

			//	Display images from the first page:
			displayPage22431a340d474a2996b9f4b4b26f87e7(0);

			