function randomProfile()
{
	var homepageProfile = [ "albert","madoff","sheikh","kent","do","stuart","library", "courtyard", "dolgetta", "glick"];
	
	var profile = homepageProfile[Math.floor(Math.random() * homepageProfile.length)];
	
	var profilelink;
	
	if (profile == "albert") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/albert.html\">&nbsp;</a>";
		}
	if (profile == "madoff") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/madoff.html\">&nbsp;</a>";
		}
	if (profile == "sheikh") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/sheikh.html\">&nbsp;</a>";
		}
	if (profile == "kent") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/kent.html\">&nbsp;</a>";
		}
	if (profile == "do") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/do.html\">&nbsp;</a>";
		}
	if (profile == "stuart") {
		var profilelink = "";
		}
	if (profile == "library") {
		var profilelink = "";
		}
	if (profile == "courtyard") {
		var profilelink = "";
		}
	if (profile == "dolgetta") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/profile19.html\">&nbsp;</a>";
		}
	if (profile == "glick") {
		var profilelink = "<a href=\"http://www.bc.edu/schools/law/prospective/profiles/profile20.html\">&nbsp;</a>";
		}
		
	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/prospective/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/prospective/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/prospective/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/prospective/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/prospective/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/prospective/profiles/eskridge.html\">Watch now &raquo;</a></p>";
		}
		
	document.getElementById("video").innerHTML = video;
}
