pictures = [
       "/static/images/trophy_case.jpg",
       "/static/images/njcommissioner.png",
       "https://lh5.googleusercontent.com/-03aeqiydLHg/TVbc1QZB9kI/AAAAAAAAFSg/ew8Tn92oVhg/DSC_0813.JPG",
       "https://lh6.googleusercontent.com/-vluq04mgAg8/TlHvqJNoiAI/AAAAAAAAFkQ/LcKmJXB2rhQ/IMG_1981.JPG",
       "https://lh5.googleusercontent.com/-c1n9Ok1NdCY/TWw9c0IpzmI/AAAAAAAAFcU/B_OIBDiVQc4/DSC_1085.JPG",
       "https://lh5.googleusercontent.com/-W3ct1GWGPjc/TVbcePZG7fI/AAAAAAAAFPo/VI967HPf0-k/DSC_0769.JPG",
       "https://lh4.googleusercontent.com/-x5lCdp7_4lc/TlHwhpHcybI/AAAAAAAAFqQ/Zt8SnBBVS4A/IMG_1633.JPG",
       "https://lh3.googleusercontent.com/-6aoFT3wK4ZE/TlHxVsEv8HI/AAAAAAAAFwU/gkOxFf2FCjk/IMG_2086.JPG",
       "https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-snc7/311390_2556949366926_1349732033_2987397_369904238_n.jpg"
];

annotations = [
       "MORT's new trophy case in the lobby of Mount Olive High School.",
       "The New Jersey Commissioner of Education, Mr. Chris Cerf, meeting with MORT student members.",
       "MORT's <a href='/electrical'>Electrical Sub-Team</a> working to prepare an electrical board for our 2011 robot.",
       "MORT selling FIRST's LED Lightbulbs at Mount Olive's Green Fest.",
       "MORT showing our work to parents and sponsors during our annual Rollout event.",
       "MORT's <a href='/animation'>Animation Sub-Team</a> hard at work creating our animation for the 2011 season.",
       "MORT demonstrating MORTasaurus at the 2011 Relay For Life event at the Mount Olive High School.",
       "MORT's Jesse Van Glahn and Matt Dunster speaking at NASA's \"What's your favorite space?\" event in NYC.",
       "MORT spreading the message of FIRST while competing at the Last Fling Pumpking Sling competition with our winning trebuchet."
];
function changePic() {
    curPic++;
    if (curPic == pictures.length) curPic = 0;
    if ($("#slideshow_1").css("display") == "none") {
        $("#slideshow_1").attr("src", pictures[curPic]);
        $("#slideshow_2").fadeOut(1000);
        $("#slideshow_annotation").slideUp(500, function() {
            $("#slideshow_annotation").html(annotations[curPic]);
            $("#slideshow_annotation").slideDown(800);
        });
        $("#slideshow_1").fadeIn(1000);
    } else {
        $("#slideshow_2").attr("src", pictures[curPic]);
        $("#slideshow_1").fadeOut(1000);
        $("#slideshow_annotation").slideUp(500, function() {
            $("#slideshow_annotation").html(annotations[curPic]);
            $("#slideshow_annotation").slideDown(800);
        });
        $("#slideshow_2").fadeIn(1000);
    }
}
$(document).ready(function() {
    curPic = Math.floor(Math.random()*pictures.length);
    $("#slideshow_1").attr("src", pictures[curPic]);
    $("#slideshow_2").attr("src", pictures[curPic]);
    $("#slideshow_annotation").html(annotations[curPic]);
    $("#slideshow_annotation").slideDown(800);
    setInterval("changePic()", 7000);
});
