jQuery(function($){
    
    /**
     * Font size changer
     */
    $('.change-size').click(function(e){
        var className = $(this).attr('id');
        $('body').attr('class', className);
        $.post(BaseURL + 'textsize/save-state/' + className);
        e.preventDefault();
    });
    
    /**
     * Social box
     */
    var offset     = $("#social-box").offset();
    var topPadding = 15;
    $(window).scroll(function() {
        if ($(window).scrollTop() > offset.top) {
            $("#social-box").stop().animate({
                marginTop: $(window).scrollTop() - offset.top + topPadding
            });
        } else {
            $("#social-box").stop().animate({
                marginTop: 0
            });
        };
    });
    
});
