

// (C) 2003 by CodeLifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 2500;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array();
var Caption = new Array();
var showHot = false;


Picture[1]  = '2006/images/43.jpg';
Picture[2]  = '2006/images/53.jpg';
Picture[3]  = '2006/images/175.jpg';
Picture[4]  = '2006/images/88.jpg';
Picture[5]  = '2006/images/142.jpg';
Picture[6]  = '2006/images/154.jpg';
Picture[7]  = '2006/images/211.jpg';
Picture[8]  = '2006/images/306.jpg';
Picture[9]  = '2006/images/285.jpg';
Picture[10]  = '2006/images/339.jpg';
Picture[11]  = '2006/images/437.jpg';
Picture[12]  = '2006/images/492.jpg';
Picture[13]  = '2006/images/486.jpg';
Picture[14]  = '2006/images/520.jpg';
Picture[15]  = '2006/images/547.jpg';
Picture[16]  = '2006/images/558.jpg';
Picture[17]  = '2006/images/570.jpg';
Picture[18]  = '2006/images/582.jpg';
Picture[19]  = '2006/images/585.jpg';
Picture[20]  = '2006/images/592.jpg';
Picture[21]  = '2006/images/824.jpg';
Picture[22]  = '2006/images/831.jpg';
Picture[23]  = '2006/images/830.jpg';
Picture[24]  = '2006/images/894.jpg';
Picture[25]  = '2006/images/587.jpg';


Caption[1]  = "National Women's Committee's President Dottie Pierce  and Executive Director Shari L. Meehan '76 ";
Caption[2]  = "National Women's Committee";
Caption[3]  = "Laurie Albert '74 BAMD! '06 Chair welcomes attendees";
Caption[4]  = "David Hackett Fischer, Warren Professor of History speaks during lunch";
Caption[5]  = "Founder of the Posse Foundation Deborah Bial '87 with Brandeis students discuss their experience as Posse Scholars";
Caption[6]  = "Posse Passion Panel";
Caption[7]  = "Professor Larry Sternberg, MJC '80 leads a discussion during the Leadership Like Louis Lessons: How To Workshops";
Caption[8]  = "Attendees enjoy the student art during the Progressive Arts, Cocktails, & Connections at the Goldman - Schwartz Fine Arts Building ";
Caption[9] = "Jonathan Novak '75, Laurie Slater Albert '74, BAMD! '06 Chair, and Charles McClendon, Chair of the Fine Arts Department";
Caption[10]  = "Alumni reconnect during the Progressive Arts, Cocktails, & Connections  at the Rose Art Museum";
Caption[11]  = "Trustee Jon Davis '75 and Nancy K. Winship, P'10,  Senior Vice President for Institutional Advancement open Saturday morning's program with Brandeis Briefings";
Caption[12]  = "State of the Sciences at Brandeis";
Caption[13]  = "Eve E. Marder '69, PhD '74, Professor of Neuroscience and Chair of Biology at Brandeis University,  Joel Schwartz '69, PhD '80, Professor of Environmental Epidemiology, Harvard University School of Public Health, and John Garvey, PhD '00, Partner, Foley & Lardner LLP";
Caption[14]  = "John Garvey, PhD '00, University Trustee Alex Barkas '68, and Professor Gregory Petsko";
Caption[15]  = "Professors Ben Gomes-Casseres '76 and Detlev Suderow '70, P '05 lead a program in The Art & Science of Leadership";
Caption[16]  = "Professors Ben Gomes-Casseres '76";
Caption[17]  = "The Art & Science of Leadership";
Caption[18]  = "Happy 150th Birthday Justice Louis D. Brandeis!";
Caption[19] = "BAMD! '06 Chair Laurie Albert '74 and Saturday Keynote Marshall Herskovitz '73";
Caption[20]  = "Frank Gilbert, Sara Cormeny '92 , Eric Hill";
Caption[21]  = "BAMD! '06 attendees concluded the weekend with a fabulous Gala Dinner on Saturday at the Moakley Federal Courthouse in Boston.  This picture is taken the foyer in the courthouse.  The quote from Justice Louis D. Brandeis reads, 'Justice is but truth in action.'";
Caption[22]  = "Yasmin Schaller '83, Jonathan Sherman and Fran Shonfeld Sherman '84 ";
Caption[23]  = "Dennis Kelleher '84, Francine Ladd Sohn '74, Clare Tully '80, Jim Leahy '85";
Caption[24]  = "Darlene Kamine '74 and Laurie Albert '74 thank the BAMD! '06 attendees for an inspiring weekend";
Caption[25]  = "BAMD! '06- In the Legacy Justice Louis D. Brandeis";

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = pss;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}

