// JavaScript Document


var index = 0;
var students = new Array(
'Student1', 
'Student2',
'Student3',
'Student4',
'Student5',
);

var studentNames = new Array(
'Student 1',
'Student 2',
'Student 3',
'Student 4',
'Student 5',

);

var studentCitizens = new Array(
'Citizenship 1',
'Citizenship 2',
'Citizenship 3',
'Citizenship 4',
'Citizenship 5',

);

var studentDegrees = new Array(
'M.Sci. 09',
'M.Sci. 09',
'M.Sci. 09',
'M.Sci. 09',
'Ph. D. 10',
);

var studentQuotes = new Array(
'"Quote 1"',

'"Quote 2"',

'"Quote 3"',

'"Quote 4"',

'"Quote 5"',

);

index = Math.random();
index = index * 10;
index = Math.round(index);
index = index % 9;
var studentprofile = students[index];
var image = "profile_js/profiles_08/" + studentprofile + ".jpg";
var page = "Profiles2008/" + studentprofile + ".shtml";
var name = studentNames[index];
var citizen = studentCitizens[index];
var degree = studentDegrees[index];
var quote = studentQuotes[index];