General work on menus and toolbars, as well as some minor terminology changes on...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / js / staff-global.js
1 // staff-global.js
2
3  $(document).ready(function() {
4         $(".focus").focus();
5         $('#toplevelmenu').clickMenu(); 
6         $('#header_search').tabs({
7                 onShow: function() {
8                 $('#header_search').find('div:visible').find('input').eq(0).focus();
9             }   
10         });
11  });
12  
13