$(document).ready(function() {

	$('#header li').hover(function() {
	 
	 $(this).animate({paddingBottom: '+=20px'}, 300);
	
	 
	}, function() {
	 
	 $(this).animate({paddingBottom: '-=20px'}, 300);
	
	 
	});

});