$(document).ready(function() {
$(function() {
$('ul li').hover(function() {
$(this).animate({
width: "300px",
}, {
duraction: 7000,
easing: "easeOutBounce"
});
}, function() {
$(this).animate({
width: "100%",
}, {
duraction: 7000,
easing: "easeOutBounce"
});
});
});
});