$(document).ready(function () {
    $("#page-1").fadeIn();

    if($(".page").length > 1)
    {
        $("#pagination").paginate({
            count: $(".page").length,
            start: 1,
            onChange: function(page) {
                console.log(page);
                $(".page").hide();
                $("#page-" + page).fadeIn();
            },
            display: 10,
            border: false,
            images: false,
            text_color: 'black',
            text_hover_color: '#FF6600',
            background_color: 'white'
        });
    }

    if($("#project-slideshow").length > 0)
    {
        $('#project-slideshow').cycle({
            'fx':       'scrollHorz',
            'timeout':  5000,
            'easing':   'easeInBack',
            'next':     '#navigation .right',
            'prev':     '#navigation .left'
        });
    }
});
