	slideshowItems = [["http://www.jamesspencer.co.uk/slideshow/section1.jpg", "Section 1", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=1_14", ""],
						["http://www.jamesspencer.co.uk/slideshow/section16.jpg", "Section 16", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=899", ""],
						["http://www.jamesspencer.co.uk/slideshow/section2.jpg", "Section 2", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=1_11", ""],
						["http://www.jamesspencer.co.uk/slideshow/section3.jpg", "Section 3", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=1_12_55", ""],
						["http://www.jamesspencer.co.uk/slideshow/section4.jpg", "Section 4", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=1", ""],
						["http://www.jamesspencer.co.uk/slideshow/section5.jpg", "Section 5", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=1_12", ""],
						["http://www.jamesspencer.co.uk/slideshow/section6.jpg", "Section 6", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=1_15", ""],
						["http://www.jamesspencer.co.uk/slideshow/section7.jpg", "Section 7", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=8_42", ""],
						["http://www.jamesspencer.co.uk/slideshow/section8.jpg", "Section 8", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=87", ""],
						["http://www.jamesspencer.co.uk/slideshow/section9.jpg", "Section 9", "http://www.jamesspencer.co.uk/pdfs/ForwardThinkingFurniture.pdf", ' target = "_blank"'],
						["http://www.jamesspencer.co.uk/slideshow/section10.jpg", "Section 10", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=86", ""],
						["http://www.jamesspencer.co.uk/slideshow/section11.jpg", "Section 11", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=3", ""],
						["http://www.jamesspencer.co.uk/slideshow/section12.jpg", "Section 12", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=6", ""],
						["http://www.jamesspencer.co.uk/slideshow/section13.jpg", "Section 13", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=6_49", ""],
						["http://www.jamesspencer.co.uk/slideshow/section14.jpg", "Section 14", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=7", ""],
						["http://www.jamesspencer.co.uk/slideshow/section15.jpg", "Section 15", "http://www.jamesspencer.co.uk/onlineshop/catalogue/index.php?cPath=10", ""]
						];
	
	function slideshow_items () {
		var startImage, i;
			
  		startImage = parseInt(Math.random() * slideshowItems.length);
		startImage = (isNaN(startImage)) ? 0 : startImage;
  		
  		for (i = startImage; i < slideshowItems.length; i++) {
      		document.write('<div><a href="' + slideshowItems[i][2]+ '"' + slideshowItems[i][3] + '><img src="' + slideshowItems[i][0] + '" alt="' + slideshowItems[i][1] + '" border="0"></a></div>');
  		}
  		for (i = 0; i < startImage; i++) {
      		document.write('<div><a href="' + slideshowItems[i][2]+ '"' + slideshowItems[i][3] + '><img src="' + slideshowItems[i][0] + '" alt="' + slideshowItems[i][1] + '" border="0"></a></div>');
  		}
  	}

	function slideshow_tabs () {
  		for (var i = 0; i < slideshowItems.length; i++) {
      		document.write('<a href="#"></a>');
  		}
	
	}
	
	
	