in js/drill.js [49:58]
watchSearchBarMouseEnter: function() {
$("#menu .search-bar input[type=text]").on({
focus: function(){
$(this).animate({ width: '130px' });
},
blur: function() {
$(this).animate({ width: '50px' });
}
})
},