	function PlaceBannerPic()
	{
		document.write ('<a href="' + arr_home_pics[home_pics_index][1] + '"><img id="home_video_img" src="/futurestudents/media/' + arr_home_pics[home_pics_index][0] + '.gif" width="' + banner_width + '" height="' + banner_height + '" alt="' + arr_home_pics[home_pics_index][2] + '" title="' + arr_home_pics[home_pics_index][2] + '" /></a><div style="text-align: right;position:relative;top:-15px;right:30px;">');
		for( var i = 0; i < arr_home_pics.length; i++ )
		{
			var style = '';
			if( i == home_pics_index )
				style = 'text-decoration:underline';

			document.write( '<a id="home_rotate_link_' + i + '" style="color: white;font-size:11px;' + style + '" href="#" onclick="RotateImages( ' + i + ' );return false;">' + ( i + 1 ) + '</a>&nbsp;&nbsp;&nbsp;' );
		}
		document.write( '</div>' );
	}

	function PlaceSpotPic()
	{
		var random_index = Math.floor( ( Math.random() * arr_spot_pics.length ) );
		document.write ('<a href="' + arr_spot_pics[random_index][1] + '"><img id="spotlight" src="/futurestudents/media/features/' + arr_spot_pics[random_index][0] + '.jpg" width="' + spot_width + '" height="' + arr_spot_pics[random_index][2] + '" alt="Spotlight" title="Spotlight" /></a>');
	}

	function RotateImages( new_index )
	{
		if( new_index >= 0 )
			home_pics_index = new_index;
		else
			home_pics_index++;

		if( arr_home_pics.length - 1 < home_pics_index )
			home_pics_index = 0;

		var pic = arr_home_pics[home_pics_index];

		var home_video_img = document.getElementById( 'home_video_img' );

		if( home_video_img )
		{
			home_video_img.src = '/futurestudents/media/' + pic[0] + '.gif';
			home_video_img.alt = pic[2];
			home_video_img.title = pic[2];

			if( home_video_img.parentNode )
				home_video_img.parentNode.href = pic[1];
		}

		for( var i = 0; i < arr_home_pics.length; i++ )
		{
			var link = document.getElementById( 'home_rotate_link_' + i );
			if( !link )
				continue;

			if( i == home_pics_index )
				link.style.textDecoration = 'underline';
			else
				link.style.textDecoration = '';
		}

		clearInterval( interval );
		interval = setInterval( 'RotateImages();', 7000 );
	}

	var banner_width = 220;
	var banner_height = 170;
	var spot_width = 133;

	// image name (must be .jpg), link, image height
	var arr_spot_pics = Array(
	/*				[ "decisionDay2008", "/decisionday/", 185 ] );*/
    	[ "academics1", "/futurestudents/video/academics.htm", 232 ]
		,	[ "academics2", "/futurestudents/video/academics.htm", 232 ]
		,	[ "fun1", "/futurestudents/video/fun.htm", 251 ]
		,	[ "fun2", "/futurestudents/video/fun.htm", 232 ]
		,	[ "next1", "/futurestudents/video/next.htm", 213 ] );

	// image_name (must be .gif), link, alt and title
	var arr_home_pics = Array(
			[ "academics-video", "video/academics.htm", "Academics Video" ]
		,	[ "fun-video", "video/fun.htm", "Fun Video" ]
		,	[ "locations-video", "video/locations.htm", "Locations Video" ]
		,	[ "whats-next-video", "video/next.htm", "What's Next Video" ] );

	var home_pics_index = Math.floor( ( Math.random() * arr_home_pics.length ) );
	var interval = setInterval( 'RotateImages();', 7000 );
