$(function() {
    $.scrollTo.defaults.axis = 'xy';

    var $container = $('#container');

    $('#go-to-home').click(function(){
        $container.stop().scrollTo('#home', 1500);
    });

    $('#go-to-about').click(function(){
        $container.stop().scrollTo('#about', 1500);
    });

    $('#go-to-options').click(function(){
        $container.stop().scrollTo('#options', 1500);
    });

    $('#go-to-goals').click(function(){
        $container.stop().scrollTo('#goals', 1500);
    });

    $('#go-to-photos').click(function(){
        $container.stop().scrollTo('#photos', 1500);
    });

    $('#go-to-faq').click(function(){
        $container.stop().scrollTo('#faq', 1500);
    });

    $('#go-to-contact').click(function(){
        $container.stop().scrollTo('#contact', 1500);
    });

    $('#go-to-links').click(function(){
        $container.stop().scrollTo('#links', 1500);
    });

    $('.question').click(function(){
        $(this).next().fadeIn();
    });
});

$(document).ready(
    function (){
        $("#pikame").PikaChoose({
            show_captions: false,
            slide_enabled: false,
            auto_play: false
        });
        $("#pikame").SliderJS({
            window_width: 500,
            window_height: 49,
            list_width: 15000,
            pikachoose: true
        });
    });
