$(document).ready(function() {
    $('.search-block .go').click(function(e) {
        e.preventDefault();
        $('#small_search_form').submit();
    });
    
    $('.right-menu a.print').nyroModal();
    
    $('#content').css('min-height', (document.documentElement.clientHeight + 50) + 'px');
    
    $('.right-menu').css('height', $('#content').height());
    
    if ($('#content').length > 0) {
        $(window).scroll(function() {
            $('.right-menu').css('height', $('#content').height());
        });
    }
    
});
