$( ".menuicon" ).mouseenter(function() {
$(this).animate({
width: '100px'
}, 300);
});
$( ".menuicon" ).mouseover(function() {
$(this).animate({
width: '36px'
}, 300);
});
The icon's width changed to 100px on mouse hover, but soon comes back to 36px with the mouse still on it.