			// Set up the image files to be used.
			var htmlContent = new Array()
			var imgLnk = new Array()
			
			//List of images 
			htmlContent[0] = '<a href="http://www.belcan.com/"><img border="0" src="sponsors/belcan.jpg"></a>'
			htmlContent[1] = '<a href="http://www.kuttatech.com/"><img border="0" src="sponsors/kutta.jpg"></a>'
			htmlContent[2] = '<a href="http://www.mandjtrophies.com/"><img border="0" src="sponsors/m_j.jpg"></a>'
			htmlContent[3] = '<a href="http://www.olphglendale.com/"><img border="0" src="sponsors/ace_awards.jpg"></a>'

			// To add more content, continue the patern
			// from above, giving each HTML content it's own index.
			// Remember to increment the htmlContent[x] index!
		
			//Pick the random content...
			var lbound = 0
			var ubound = htmlContent.length - 1;
			
			//var randomIndex = Math.floor(Math.random()*(ubound-1));
			var randomIndex = Math.floor(((ubound - lbound + 1) * Math.random())+lbound);
			//                Math.floor(((upperbound - lowerbound + 1) * Math.random()) + lowerbound)
			
			//Funtion to load the random content into the web page.
			function randomAd(){
				document.write(htmlContent[randomIndex]);
			}

