﻿// perform JavaScript after the document is scriptable.
$(document).ready(function () {
    $("span#spnSearchBox a").click(function (e) {
        // Show/hide search box.
        $("div#search_container").slideToggle('normal', function () {
            if (!$(this).is(':hidden')) {
                $("div#search_container [id*=ow_txtSearch]").focus();
            }
            return false;
        });

        // Prevent the link from navigating to the search page
        e.preventDefault();
    });
});
