$(function() {
	$('.oo li').hover(function () {
		$(this).animate({paddingLeft: '+=100px'},300);
		$(this).css({color: 'rgb(112,216,248)'});
	}, function() {
		$(this).animate({paddingLeft: '-=100px'},1000,'easeOutBounce');
		$(this).css({color: 'black'});
	});
});
