$(document).ready(function(){
    $('.scroll').jScrollbar({
            allowMouseWheel : true,
            scrollStep : 5
    });

    $('#top').cycle({
        fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        speed:  4500,
        timeout: 500
    });

});

$(document).ready(function(){

    events(0);

    $.ajax({
        type: 'GET',
        url: '/twitter',
        success: function(html){
             $('#twitter').html(html).fadeIn(500);
        }
    });

});

function events(page) {
    $.ajax({
        type: 'GET',
        url: '/events/'+page,
        success: function(html){
            $('#events').hide().fadeIn(500).html(html);
            $('.pg').click(function(){
                events($(this).attr('rel'));
            });
        }
    });
}

// date pick
$(function() {
    $('#datepick').datepick({
        buttonImageOnly: true,
        dateFormat: 'dd.mm.yy',
    });
});

