function rotating_profiles()
{

	var profile_image = new Array();
		profile_image[0] = 'sboyd';
		profile_image[1] = 'yromero';
		profile_image[2] = 'mmays';
		profile_image[3] = 'tgottleber';
		profile_image[4] = 'kkouadio';
		profile_image[5] = 'dlassiter';
		profile_image[6] = 'bcampbell';
		profile_image[7] = 'pmarez';
		profile_image[8] = 'myoby';
		profile_image[9] = 'bskillern';
		//profile_image[10] = 'afranklin';
		//profile_image[11] = 'sbenezue';
	
	var profile_text = new Array()
		profile_text[0] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[0] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Sherry Boyd</span><br/><span style=\"text-decoration: underline;\">Humanities Faculty &nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[1] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[1] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Yolanda Romero</span><br/> <span style=\"text-decoration: underline;\">History Faculty &amp; Advisor to Phi Theta Kappa &nbsp;&nbsp;&gt;&gt;</span></a></div>';
		profile_text[2] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[2] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Marilyn Mays</span><br/> <span style=\"text-decoration: underline;\">Executive Dean of Math, Natural Science &amp; Sports Science &nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[3] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[3] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Tim Gottleber</span><br/> <span style=\"text-decoration: underline;\">Computer Information Technology Faculty &nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[4] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[4] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Kay Kouadio</span><br/> <span style=\"text-decoration: underline;\">Chemistry Faculty&nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[5] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[5] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Dawn Lassiter</span><br/> <span style=\"text-decoration: underline;\">North Lake Graduate &nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[6] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[6] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Brigitte Campbell</span><br/> <span style=\"text-decoration: underline;\">Career Planning &amp; Placement Specialist, Career Services &nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[7] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[7] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Patricia Marez</span><br/> <span style=\"text-decoration: underline;\">Program Director, Workforce Languages&nbsp;&nbsp;&gt;&gt;</span></a></div>'
		profile_text[8] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[8] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Michelle Yoby</span><br/> <span style=\"text-decoration: underline;\">North Lake Student &nbsp;&nbsp;&gt;&gt;</span></a></div>'		
		profile_text[9] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[9] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Barry Skillern</span><br/> <span style=\"text-decoration: underline;\">North Lake Student&nbsp;&nbsp;&gt;&gt;</span></a></div>'
		//profile_text[10] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[10] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Ayianna Franklin</span><br/> <span style=\"text-decoration: underline;\">North Lake Student&nbsp;&nbsp;&gt;&gt;</span></a></div>'
		//profile_text[11] = '<div id=\"hp_profile_text\"><a href=\"http://www.northlakecollege.edu/profiles/' + profile_image[11] + '.html\" class=\"profilelinks\"><span class=\"hp_profile_large_text\">Steven Benezue</span><br/> <span style=\"text-decoration: underline;\">Gallery Director &nbsp;&nbsp;&gt;&gt;</span></a></div>'		
		
	var i = Math.floor(Math.random()*(profile_image.length));
	//var i = 1;
	
	document.getElementById("hp_profile_left").style.background = "url(http://www.northlakecollege.edu/images/profiles/" + profile_image[i] + "_left.jpg) right no-repeat";
	document.getElementById("hp_profile_center").style.background = "url(http://www.northlakecollege.edu/images/profiles/" + profile_image[i] + "_center.jpg) center no-repeat";
	document.getElementById("hp_profile_right").style.background = "url(http://www.northlakecollege.edu/images/profiles/" + profile_image[i] + "_right.jpg) left no-repeat";

	hp_profile_text.innerHTML = profile_text[i];

}