// This example shows three ways to add a slide, so pick the most appropriate method. 

ss = new slideshow("ss");

s = new slide();
s.src = "images/ssimages/portrait.gif";
s.link = "about/adolphus_greely.htm";
s.title = "Adolphus Greely";
s.text = '<a href="http://www.scra-agc.org/about/adolphus_greely.htm">Who is Adolphus Greely</a>: General Adolphus Greely is an Explorer, Medal of Honor winner, and a role model for all Signaleers. Checkout the "Who is Adolphus Greely" page for more information on this outstanding individual and his accomplishments.';
s.target = "_parent";
s.timeout = 3000;
s.attr = "width=113,height=150";
ss.add_slide(s);

s = new slide();
s.src = "images/ssimages/scholarship.jpg";
s.link = "scholarship/scholarship.htm";
s.title = "Scholarship Program";
s.text = '<a href="http://www.scra-agc.org/scholarship/scholarship.htm">Scholarship Program</a>: Each year, the Fort Gordon Adolphus Greely Chapter of the Signal Corps Regimental Association (SCRA) awards four $1000.00 scholarships to deserving recipients of the Augusta/Fort Gordon area.  The scholarships are awarded as follows: one to an Active Duty Soldier, two awarded to High School Seniors residing in the Central Savannah River Area (CSRA), and one awarded to the Spouse of an Active Duty Soldier assigned to Fort Gordon.';
s.target = "_parent";
s.timeout = 3000;
s.attr = "width=150,height=150";
ss.add_slide(s);

s = new slide();
s.src = "images/ssimages/fb_logo.gif";
s.link = "http://www.facebook.com/home.php?#/pages/Martinez-GA/Adolphus-Greely-Chapter-Signal-Corps-Regimental-Association/32349814791?ref=ts";
s.title = "Chapter on Facebook";
s.text = '<a href="http://www.facebook.com/home.php?#/pages/Martinez-GA/Adolphus-Greely-Chapter-Signal-Corps-Regimental-Association/32349814791?ref=ts">Adolphus Greely Chapter on Facebook:</a>The Chapter Facebook page is available to all, even if you are not a member of Facebook. If you have a Facebook account be sure to include the Chapter Facebook page in your favorites.';
s.target = "_parent";
s.timeout = 3000;
s.attr = "width=150,height=150";
ss.add_slide(s);

s = new slide();
s.src = "images/ssimages/calender.jpg";
s.link = "http://web.memberclicks.com/mc/community/vieweventcalendar.do?orgId=sic";
s.title = "Chapter Calender";
s.text = '<a href="http://web.memberclicks.com/mc/community/vieweventcalendar.do?orgId=sic">Chapter Calendar</a>: This is a great resource for keeping track of Chapter meetings, events, and more. Check it often to keep current.';
s.target = "_parent";
s.timeout = 3000;
s.attr = "width=150,height=150";
ss.add_slide(s);

s = new slide();
s.src = "images/ssimages/gallery.gif";
s.link = "gallery.htm";
s.title = "Chapter Galleries";
s.text = '<p style="font-family:Arial, Helvetica, sans-serif; font-size: small">Checkout the latest photos in our Chapter Galleries:<br/><br/><a href="http://www.scra-agc.org/gallery/">Activities &amp; Functions</a><br/><a href="http://www.scra-agc.org/basketballgallery/">Basketball Tournaments</a><br/><a href="http://www.scra-agc.org/combativesgallery/">Combatives Tournaments</a><br/><a href="http://www.scra-agc.org/golfgallery/">Golf Tournaments</a><br/><a href="http://www.scra-agc.org/springchallengegallery/">Spring Challenge (10K Run)</a></p>';
s.target = "_blank";
s.timeout = 3000;
s.attr = "width=150,height=150";
ss.add_slide(s);

// Notes:
//
//  * When you create the slideshow object (with new slideshow) you must pass in the name of your slideshow object - if you are making an automatically-running slideshow.
//
//  * For each slide, you can specify the following information:
//
//    1. The image URL,
//    2. The link URL corresponding with that image,
//    3. Some text that describes the image,
//    4. The target name to pop open a new window when the user clicks the link, and
//    5. The list of window attributes such as "width=200,height=200".
//
//    Of these only the first is actually required. 

