jQuery: Expand Searchfield on Hover
$('#search-form #q').on('focus', function(){
$(this).parents('#search-form').animate({'width' : '300'});
});
$('#search-form #q').on('blur', function(){
$(this).parents('#search-form').animate({'width' : '140'});
});