var random = Math.round(Math.random()*(6-1))+1;
var top_right_image = new Image();
var rotating_wheelchair = new Image();


document.images.top_right_image.width = 660;
top_right_image.src = base_path + "/images/top_images/usa/image" + random + ".jpg";
rotating_wheelchair.src = base_path + "/images/wheelchair_tour/animated.gif";

if (!document.layers) {  //if not netscape 4, do scroll
	//start_scroll();
}
if (document.getElementById) {
	setTimeout("opacity('top_right_image', 0, 100, 700)", 500);
}
setTimeout('load_image()', 1000);
setTimeout('load_wheelchair_image()', 1000);

function load_image () {
	if (document.images) {
		document.images.top_right_image.src = top_right_image.src;
	}
}

function load_wheelchair_image ()
{
	if (document.images.rotating_wheelchair != undefined)
	{
		document.images.rotating_wheelchair.src = rotating_wheelchair.src;
	}
}
