// JavaScript Document

function randomHome()
{
	var aryImages = new Array( "splash01", "splash02", "splash03", "splash04", "splash05" );
	var aryImageNames = new Array( "rehab_splash", "rehab_splash", "poolrehab_splash", "karaterehab_splash", "climbrehab_splash");
	var randnum = Math.floor( Math.random() * aryImages.length );
	var splashdir = aryImages[randnum] + "/" + aryImageNames[randnum];

	var splashhtml = "<table width=\"664\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">" 
			 + "<tr><td colspan=\"4\"><a href=\"http://www.vcu.edu\" target=\"_blank\"><img src=\"images/vcubar.gif\" alt=\"VCU\" width=\"664\" height=\"20\" border=\"0\"></a></td></tr>"
			 + "<tr>"
			 + "<td><img src=\"images/" + splashdir + "_01.jpg\" width=\"257\" height=\"109\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_02.jpg\" width=\"145\" height=\"109\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_03.jpg\" width=\"137\" height=\"109\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_04.jpg\" width=\"125\" height=\"109\" alt=\"\"></td>"
			 + "</tr><tr>"
			 + "<td><img src=\"images/" + splashdir + "_05.jpg\" width=\"257\" height=\"144\" alt=\"\" border=\"0\" usemap=\"\#Map\" class=\"footer\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_06.jpg\" width=\"145\" height=\"144\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_07.jpg\" width=\"137\" height=\"144\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_08.jpg\" width=\"125\" height=\"144\" alt=\"\"></td>"
			 + "</tr><tr>"
			 + "<td><img src=\"images/" + splashdir + "_09.jpg\" width=\"257\" height=\"96\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_10.jpg\" width=\"145\" height=\"96\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_11.jpg\" width=\"137\" height=\"96\" alt=\"\"></td>"
			 + "<td><img src=\"images/" + splashdir + "_12.jpg\" width=\"125\" height=\"96\" alt=\"\"></td>"
			 + "</tr></table>";
	document.write(splashhtml);

	
}//randomHome