﻿$(function() {
        var _k = '<%=_KeyWords %>';

        $('#ctl09_Search1__kw').val(_k);
        $("#ctl09_Search1__kw")
        .focus(function() {
            if ($(this).val() == _k) {
                $(this).val('');
            }
        })
        .blur(function() {
            if ($(this).val() == '') {
                $(this).val(_k);
            }
        });
        
            $('#leftmenu').Accordion({
                active: 'a.selected',
                header: 'a.head',
                alwaysOpen: false,
                animated: true,
                showSpeed: 400,
                hideSpeed: 800
            });
        });
