// JavaScript Document


var index = 0;
var students = new Array(
'Belahmidi', 
'Kabir',
'King',
'Manyx',
'Vaitla',
'shultz',
'klein',
'block',
'fawaz',
'Babbitt'
);

var studentNames = new Array(
'Fahd Belahmidi',
'Naureen Nadia Kabir',
'Elizabeth B. Ludwin King',
'Todd Manyx',
'Bapu Vaitla',
'Richard Shultz',
'Michael Klein',
'Steven Block',
'Leila Fawaz',
'Eileen F. Babbitt'
);

var studentCitizens = new Array(
'Morocco',
'Bangladesh & United States',
'United States',
'United States',
'India',
'Professor',
'Professor',
'Associate Professor',
'Professor',
'Professor'
);

var studentDegrees = new Array(
'MIB 2010',
'MALD 2010',
'LLM 2009',
'MA 2009',
'PHD',
'International Politics',
'International Economics',
'International Economics',
'Lebanese and Eastern Mediterranean Studies',
'Intl Conflict Management Practice'
);

var studentQuotes = new Array(
'"This program is preparing me for the challenges lying ahead in the global market by offering me a broader vision of the world’s economic, social and political dynamics."',

'"What truly makes Fletcher an international school is the wide-ranging array of international experiences that each person has had before coming to Fletcher, and the commitment to continue on in that tradition. "',

'"The law professors at Fletcher all have a valuable mix of practical and academic experience that enhances their lectures. "',

'"The spectrum of knowledge and diversity you are able to tap into at Fletcher is both inspiring and humbling."',

'"As a PhD student here at Fletcher I\'ve been exposed to a greater depth of interdisciplinary collaboration than I ever have before."',

'"Is the increased importance of non-state armed groups such that it should be viewed as a \'global insurgency?\'"',

'"International competition is one source of job destruction, but only one of many. International competition is also one of the sources of job creation, however, a point that is often missed in the media since job destruction is better press."',

'"[A]s developing countries in Africa move towards democracy it is important to understand the implications of political change on macro stability."',

'“Egypt, Lebanon, Syria, Jordan, Israel, Palestine...,culturally, the region is amazing. There has been a recent revival of intellectual and cultural history in the area, and we need more of that."',

'"The work I do in practice inspires the kind of questions that I’m interested in researching and teaching. Right now, the important questions have to do with how to pursue both peace and justice."'
);

index = Math.random();
index = index * 10;
index = Math.round(index);
index = index % 10;
var studentprofile = students[index];
var image = "home_profiles/images/" + studentprofile + ".jpg";
var page = "home_profiles/" + studentprofile + ".shtml";
var name = studentNames[index];
var citizen = studentCitizens[index];
var degree = studentDegrees[index];
var quote = studentQuotes[index];