function randomProfile()
{
	var homepageProfile = [ "jones","shapira","twiss","perju","stuart","library","graduates"];
	
	var profile = homepageProfile[Math.floor(Math.random() * homepageProfile.length)];
	
	var profilelink;
	
	if (profile == "shapira") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/about/profiles/profile7.html\">&nbsp;</a>";
		}
	if (profile == "jones") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/about/profiles/profile11.html\">&nbsp;</a>";
		}
	if (profile == "twiss") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/about/profiles/profile8.html\">&nbsp;</a>";
		}
	if (profile == "perju") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/about/profiles/profile10.html\">&nbsp;</a>";
		}
	if (profile == "stuart") {
		var profilelink = "";
		}
	if (profile == "library") {
		var profilelink = "";
		}
	if (profile == "graduates") {
		var profilelink = "";
		}	
		
	document.getElementById("profile").className = profile + "-profile";
	document.getElementById("navigation").className = profile + "-navigation";
	document.getElementById("profilelink").innerHTML = profilelink;
}

function randomVideo()
{
	var homepageVideo = [ "cassidy", "eskridge", "parker"];
	
	var profile = homepageVideo[Math.floor(Math.random() * homepageVideo.length)];
	
	var video;
	
	if (profile == "cassidy") {
		var video = "<h2>Video Spotlight</h2><a href=\"http://www.bc.edu/schools/law/about/profiles/cassidy.html\"><img src=\"http://www.bc.edu/shared/Law/jpg/profiles/cassidy-video.jpg\" width=\"70\" height=\"70\" alt=\"Michael Cassidy\" /></a><p class=\"caption\">\"What makes a successful student?\"</p><p style=\"border-top:1px solid #bbb;padding-top:15px;\"><a href=\"http://www.bc.edu/schools/law/about/profiles/cassidy.html\">Watch now &raquo;</a></p>";
		}
	if (profile == "eskridge") {
		var video = "<h2>Video Spotlight</h2><a href=\"http://www.bc.edu/schools/law/about/profiles/parker.html\"><img src=\"http://www.bc.edu/shared/Law/jpg/profiles/parker-video.jpg\" width=\"70\" height=\"70\" alt=\"Colleen Parker\" /></a><p class=\"caption\">\"Why choose BC Law?\"</p><p style=\"border-top:1px solid #bbb;padding-top:15px;\"><a href=\"http://www.bc.edu/schools/law/about/profiles/parker.html\">Watch now &raquo;</a></p>";
		}
	if (profile == "parker") {
		var video = "<h2>Video Spotlight</h2><a href=\"http://www.bc.edu/schools/law/about/profiles/eskridge.html\"><img src=\"http://www.bc.edu/shared/Law/jpg/profiles/eskridge-video.jpg\" width=\"70\" height=\"70\" alt=\"Robert Eskridge\" /></a><p class=\"caption\">\"Get involved.\"</p><p style=\"border-top:1px solid #bbb;padding-top:15px;\"><a href=\"http://www.bc.edu/schools/law/about/profiles/eskridge.html\">Watch now &raquo;</a></p>";
		}
		
	document.getElementById("video").innerHTML = video;
}