var image_list = [

	// [ <image path>, <width>, <height>, <alt text>, <url> ]

	['/rsc/img/fs/fs_profiles/fs_college_profile_01.jpg', 162, 203, 'first profile pic', '#'],
	['/rsc/img/fs/fs_profiles/fs_college_profile_02.jpg', 162, 203, 'second profile pic', '#'],
	['/rsc/img/fs/fs_profiles/fs_college_profile_03.jpg', 162, 203, 'third profile pic', '#'],
	['/rsc/img/fs/fs_profiles/fs_college_profile_04.jpg', 162, 203, 'fourth profile pic', '#'],
	['/rsc/img/fs/fs_profiles/fs_college_profile_05.jpg', 162, 203, 'fifth profile pic', '/future/studenttestimonials/brenda_smith.html'],
];

var student_image = Math.round(Math.random()*(image_list.length-1));

function showProfile() {
	document.getElementById("random_profile_link").href=image_list[student_image][4];
	document.getElementById("random_profile_pic").src=image_list[student_image][0];
	document.getElementById("random_profile_pic").width=image_list[student_image][1];
	document.getElementById("random_profile_pic").height=image_list[student_image][2];
	document.getElementById("random_profile_pic").alt=image_list[student_image][3];
}

