// JavaScript Document
$(document).ready(function(){
	$('#navMenu ul li a').hover(function(){
		$(this).animate({paddingBottom: '+=20px'}, 200, 'swing');
	}, function(){
		$(this).animate({paddingBottom: '-=20px'}, 200, 'swing');
	});
});
