﻿jQuery(document).ready(function () {
    $(".header_btn02").toggle(
            function () {
                $(".searchbox_open").animate({ height: "25" }, 200, 'swing');
                $(".header_searchboxx").animate({ height: "15" }, 100, 'swing');
            },
            function () {
                $(".searchbox_open").animate({ height: "0" }, 200, 'swing');
                $(".header_searchboxx").animate({ height: "0" }, 100, 'swing');
            }
        );
    var questboxopen = 0;
    $(".questBox_btnDescr").click(function () {
        if (questboxopen == 0) {
            $(".questBox_closed").animate({ left: 0 }, 400, 'swing');
            questboxopen = 1;
        }
        else {
            $(".questBox_closed").animate({ left: -233 }, 400, 'linear');
            questboxopen = 0;
        }
    });
});
