$(document).ready(function() {    
    $('.hyp p, .hyp li').each(function() {
        $(this).addClass('hyphenate').attr('lang', 'pl');
    })
    
    Hyphenator.config({
        displaytogglebox : false,
        minwordlength : 4
    });
    Hyphenator.run();
    
    
    $.localScroll({
        duration: 400,
        hash: true
    });
    
    $('#header').height($(window).height());
});
