if (!document.getElementById)
	window.open("BrowserUpgrade.html", "new_win", "toolbar,menubar,scrollbars,resizable,location,height=440,width=630")

// CodeAve.com JavaScript SlideShow
// Created from the JavaScript SlideShow ScriptWriter on 10-02-2000
// http://www.codeave.com


var pictures = new Array
// List all the pictures in the slideshow here
	(
	"/ggp/images/slideshow/feature1.jpg"
	,"/ggp/images/slideshow/feature2.jpg"
	,"/ggp/images/slideshow/feature3.jpg"
	,"/ggp/images/slideshow/feature4.jpg"
	,"/ggp/images/slideshow/feature5.jpg"
	);
var picture_num = 0;
var current_picture = new Image();
current_picture.src = pictures[ picture_num ];
function start_show()
	{
	// Time is in seconds X 1000
	setInterval("slideshow()", 7000);
	}
function slideshow()
	{
	picture_num++;
	if (picture_num == pictures.length)
		{
		picture_num = 0;
		}
	current_picture.src = pictures[ picture_num ];
	document[ "rotating_picture" ].src = current_picture.src;
	}

