<!--

// methods: RevealTrans, Barn, Blinds, Fade, GradientWipe, Iris, Pixelate, RadialWipe, 
//		RandomBars, RandomDissolve, Slide, Spiral, Stretch, Strips, Wheel, Zigzag
// not good: Compositor, Inset, BlendTrans

// caption color: 
// lingle: blue chen: brow gautam: darkgreen crowder: darkred
// 

// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
ss.timeout = 4000;

// By default, all of the slideshow images are prefetched.
// If you have a large number of slides you can limit the
// number of images that are prefetched.
// ss.prefetch = 1;

// By default the slideshow will repeat when you get to the end.
// ss.repeat = false;

// Create the slides and add them to the slideshow.
// 1.
s = new slide();
s.src =  "pics/chen1.jpg";
s.link = "http://elysium.wustl.edu/ChenLab";
//s.title = "Chen Lab Figure1";
s.text = "&nbsp; &nbsp; -- by <font color=brown><b>Zhoufeng Chen</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.Spiral()';
ss.add_slide(s);

// 2.
s = new slide();
s.src =  "pics/crowder1.jpg";
s.link = "http://elysium.wustl.edu/CrowderLab";
s.title = "Working model of presynaptic mechanism of isoflurane in C. elegans.";
s.text = "Genetic and cell biological evidence implicates an UNC-13-dependent presynaptic anesthetic mechanism.";
s.text += "<br>&nbsp; &nbsp; -- by <font color=darkred> <b>Mike Crowder</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.Barn()';
ss.add_slide(s);

// 3.
s = new slide();
s.src =  "pics/gautam2a.jpg";
s.link = "http://elysium.wustl.edu/GautamLab";
s.text = "&nbsp; &nbsp; -- by <font color=darkgreen> <b>Gautam</b>.";
s.filter = 'progid:DXImageTransform.Microsoft.Iris()';
ss.add_slide(s);

// 4.
s = new slide();
s.src =  "pics/lingle1.jpg";
s.link = "http://elysium.wustl.edu/LingleLab";
s.text = "&nbsp; &nbsp; -- by <font color=blue> <b>Lingle</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
ss.add_slide(s);

// 5.
s = new slide();
s.src =  "pics/gautam1.jpg";
s.link = "http://elysium.wustl.edu/GautamLab";
s.text = "&nbsp; &nbsp; -- by <font color=darkgreen> <b>Gautam</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.Zigzag()';
ss.add_slide(s);

// 6.
s = new slide();
s.src =  "pics/chen2.jpg";
s.link = "http://elysium.wustl.edu/ChenLab";
//s.title = "Chen Lab Figure1";
s.text = "&nbsp; &nbsp; -- by <font color=brown> <b>Zhoufeng Chen</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.Spiral()';
ss.add_slide(s);


// 7.
s = new slide();
s.src =  "pics/gautam3a.jpg";
s.link = "http://elysium.wustl.edu/GautamLab";
s.text = "&nbsp; &nbsp; -- by <font color=darkgreen> <b>Gautam</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.RevealTrans()';
ss.add_slide(s);


// 8.
s = new slide();
s.src =  "pics/akk2.jpg";
s.link = "http://elysium.wustl.edu/akklab";
s.text = "Single-channel clusters obtained with 50 microM GABA and 1 microM ";
s.text += "Alexa-allopregnanolone applied from the extracellular side of the membrane ";
s.text += "(top trace), or 50 microM GABA applied extracellularly and 1 microM ";
s.text += "Alexa-allopregnanolone applied from the intracellular side of the membrane (bottom trace). <br>";
s.text += "&nbsp; &nbsp; -- by <font color=#CC3399> <b>Gustav Akk</b></font>.";
s.filter = 'progid:DXImageTransform.Microsoft.Barn()';
ss.add_slide(s);

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.
for (var i=0; i < ss.slides.length; i++) {
  s = ss.slides[i];
  s.target = "_blank";
  //s.target = "ss_popup";
  //s.attr = "width=400,height=400,resizable=yes,scrollbars=yes";
}

//-->
