$(document).ready(function() {


    //Loads the slideshow
    theRotator();
    $('div.rotator').fadeIn(1000);

    //Loads the Accordian
    initAccordian();



    $('.toggleable').click(function(){
        $(this).next().toggle();
    });


    updateDate();
});

