//Slider script
$(window).load(function() {
    $('.flexslider').flexslider({
        controlNav: false,
        directionNav: false,
        animation: "slide"
    });
});

//Footer script
jQuery(function($){
   var slide = false;
   var height = $('#footer-content').height();
   $('#footer-button').click(function(){
       var docHeight = $(document).height();
       var windowHeight = $(window).height();
       var scrollPos = docHeight - windowHeight + height;
       $('#footer-content').animate({ height: "toggle"}, 1000);
       if(slide == false) {
           if($.browser.opera) {
               $('html').animate({scrollTop: scrollPos+'px'}, 1000);
           }
           else {
               $('html, body').animate({scrollTop: scrollPos+'px'}, 1000);
           }
           slide = true;
       }
       else {
           slide = false;
       }
   });
});
