﻿function GetSearchQuery() {
    var query = $('#sokdiv input').val();
    $('#hiddenquerydiv input').val(query);
    return true;
}

$(document).ready(function() {
    $('div.katcheck input').click(function() {
        $(this).prevAll().each(function() {
            if ($(this).attr('style') == 'display: none;' || $(this).attr('style') == 'DISPLAY: none') {
                $(this).show();
            } else {
                $(this).hide();
            }
        });
    });
});
