// definition and function to write random profiles to the home page
var homeprofileleft_img = new Array(20);
var homeprofileleft_alt = new Array(20);
var homeprofileleft_width = new Array(20);
var homeprofileright_img = new Array(20);
var homeprofileright_alt = new Array(20);
var homeprofileright_width = new Array(20);
var homequoteoff_img = new Array(20);
var homequoteon_img = new Array(20);
var homequote_alt = new Array(20);
// Enter the total number of profiles for the home page here.
// Make sure there are at least this many images and alt tags in the array.
var totalhomeprofiles = 3;
// Images and alt tags for the left side image of the profile
homeprofileleft_img[1]="home1.jpg";
homeprofileleft_alt[1]="Performing Arts";
homeprofileleft_width[1]="175";
homeprofileleft_img[2]="home2.jpg";
homeprofileleft_alt[2]="Homecoming Games";
homeprofileleft_width[2]="175";
homeprofileleft_img[3]="home3.jpg";
homeprofileleft_alt[3]="Lower School Friends";
homeprofileleft_width[3]="175";
// Images and alt tags for the right side image of the profile
// Enter the total number of profiles for the home page here.
// Make sure there are at least this many images and alt tags in the array.
var totalhomequotes = 6;
// Images and alt tags for the left side image of the profile
homequoteoff_img[1]="quote1_0.gif";
homequoteon_img[1]="quote1_1.jpg";
homequote_alt[1]=""You meet different kinds of people from diverse backgrounds - it feels like the real world here."";
homequoteoff_img[2]="quote2_0.gif";
homequoteon_img[2]="quote2_1.jpg";
homequote_alt[2]=""You can take advantage of neighboring institutions such as the Museum of Fine Arts, or explore the world travelling with BB&N to places like Moscow or Bejing."";
homequoteoff_img[3]="quote3_0.gif";
homequoteon_img[3]="quote3_1.jpg";
homequote_alt[3]=""There's something for you to be good at here. It's a warm community where you really can't go wrong."";
function write_random_home_profile() {
profilenum = Math.round(Math.random() * (totalhomeprofiles - 1)) +1;
document.write('
');
document.write('
');
}
function write_random_home_quote() {
quotenum = Math.round(Math.random() * (totalhomeprofiles - 1)) +1;
document.write('
');
}