jQuery(document).ready(function(){
	jQuery("#nav li").hover(
	function() {
		jQuery(this).animate({"top": "-10px"}, 200);
	},
	function() {
		jQuery(this).animate({"top": "0px"}, 200) ;
	});
}); 
