$(document).ready(function(){
$(".navi").mouseover(function(){
$(this).animate({paddingLeft: "20", width: "190", backgroundColor: "#ff0000"}, "fast")
});
$(".navi").mouseout(function(){
$(this).animate({paddingLeft: "10", width: "200"}, "fast")
});
});