$(function(){

    var state = true;

    $('a.s_logo, a.j_thumb').click(function(){
        elem = $(this);
        page_id = this.hash.substr(1);
        if (elem.hasClass('active')) return false;
        $('a.s_logo').removeClass('active').css('background-position', '0 center');
        elem.addClass('active').css('background-position', '-100px center');
        $('#loader').show();
        $.post('/journals/full/' + page_id, {ajax: 1}, function(data){
            $('#loader').hide();
            slide_num = (state) ? 1 : 0;
            $('#slide_' + slide_num).html(data);
            $('#rotator').cycle(slide_num);
            state = !state;
        });
        return false;
    });

    $('#rotator').cycle({speed: 300, cleartypeNoBg: true, timeout: 0});

});
