/*
Postara se o skryti/odkryti podrobnejsich parametru pro vyhledavani.
*/
$(document).ready(function(){
    if (!($.getURLParam("text") || $.getURLParam("tags") || (($.getURLParam("cycle")) && ($.getURLParam("cycle") != 'jakehokoliv')))) {
        $('#advanced_filter').hide();
    }
    $('#filter').append('<a href="#" id="advanced_filter_switch" style="padding:4px 12px;text-decoration:none;outline:none;" title="Podrobnější vyhledávací parametry"> + <span style="display:none">Podrobnosti</span></a>');
    $('#advanced_filter_switch').click(function(){
        if ($('#advanced_filter').css('display') == 'none') {
            $('#advanced_filter').show()
        }
        else {
            $('#advanced_filter').hide()
        }
        return false;
    });
    $('#advanced_filter_switch').hover(function(){
        $(this).find('span').show();
    }, function(){
        $(this).find('span').hide();
    });
});

// vim: set et si ts=4 sw=4 enc=utf-8 syn=javascript:
