$(document).ready(function () {
    $('#toolbar').prepend('<img src="/images/bigger.png" alt="Nagyítás" title="Nagyítás" id="bigger" /><img src="/images/smaller.png" alt="Kicsinyítés" id="smaller" />');
    $('#toolbar').append('<img src="/images/print.png" alt="Nyomtatás" title="Nyomtatás" id="print" />');
    
    $('#bigger').click(function () {
        var size = parseInt($('#page_content').css('font-size'));

        if (size < 19) {
          $('#page_content').css('font-size', (size + 2) + 'px');
          
          $('#before_content').css('height', $('#content').outerHeight());
        }
    });
    
    $('#smaller').click(function () {
        var size = parseInt($('#page_content').css('font-size'));

        if (size > 13) {
          $('#page_content').css('font-size', (size - 2) + 'px');
          
          $('#before_content').css('height', $('#content').outerHeight());
        }
    });
    
    $('#print').click(function () {
        contentPrint();
    });
});
