// JavaScript Document

// Create the slideshow object
ss = new slideshow("ss");
ss.timeout = 5000;
ss.repeat = true;
 
// Set the delay between slides, 1000 = 1 sec
// ss.timeout = 3000;
 
// 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.
s = new slide();
s.src =  "../SlideShows/Images/PlayerAccomplishments/GCastelliProfile.jpg";
s.link = "../SlideShows/Images/PlayerAccomplishments/GCastelliProfile.jpg";
s.title = "Gabrielle Castelli";
s.text = "<b>Gabrielle Castelli - Freshman</b><br/>";
s.text += "<li>1st Team All Essex County</li>";
s.text += "<li>1st Team All Group 1</li>";
s.text += "<li>2nd Team All Super Essex Conference</li>";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss.add_slide(s);
 
s = new slide();
s.src =  "../SlideShows/Images/PlayerAccomplishments/CTrauseProfile.jpg";
s.link = "../SlideShows/Images/PlayerAccomplishments/CTrauseProfile.jpg";
s.title = "Cassidy Trause";
s.text = "<b>Cassidy Trause - Freshman</b><br />";
s.text += "<li>1st Team All Super Essex Conference</li>";
s.text += "<li>2nd team All Essex County</li>";
s.text += "<li>2nd team All group 1</li>";
ss.add_slide(s);

s = new slide();
s.src = "../SlideShows/Images/PlayerAccomplishments/JSosnickiProfile.jpg";
s.link = "../SlideShows/Images/PlayerAccomplishments/JSosnickiProfile.jpg";
s.title = "Julie Sosnicki";
s.text = "<b>Julie Sosnicki - Freshman</b><br />";
s.text += "<li>BCSL American First Team All League</li>";
s.text += "<li>All Bergen County Honorable Mention</li>";
ss.add_slide(s);

s = new slide();
s.src = "../SlideShows/Images/PlayerAccomplishments/HArentowiczProfile.jpg";
s.link = "../SlideShows/Images/PlayerAccomplishments/HArentowiczProfile.jpg";
s.title = "Holly Arentowicz";
s.text = "<b>Holly Arentowicz - Freshman</b><br />";
s.text += "<li>2nd Team All-Conference NJWJAC</li>";
s.text += "<li>All-Morris County Honorable Mention</li>";
ss.add_slide(s);

s = new slide();
s.src = "../SlideShows/Images/PlayerAccomplishments/MMelendezProfile.jpg";
s.link = "../SlideShows/Images/PlayerAccomplishments/MMelendezProfile.jpg";
s.title = "Mikayla Melendez";
s.text = "<b>Mikayla Melendez - Sophmore</b><br />";
s.text += "<li>2nd team All League NJTCC</li>";
s.text += "<li>3rd Team All Passaic County</li>";
ss.add_slide(s);

s = new slide();
s.src = "../SlideShows/Images/PlayerAccomplishments/ADurhamProfile.jpg";
s.link = "../SlideShows/Images/PlayerAccomplishments/ADurhamProfile.jpg";
s.title = "Amanda Durham";
s.text = "<b>Amanda Durham - Freshman</b><br />";
s.text += "<li>1st Team All Monmouth County</li>";
s.text += "<li>1st Team All Monmouth County Coaches Division</li>";
s.text += "<li>2nd Team All Shore Conference</li>";
s.text += "<li>2nd Team All NJ Non Public Schools</li>";
ss.add_slide(s);





















