$(".navbody").hover(
	function(){
  $(this).animate({ 
    marginBottom: "0px"
  }, 400 );
},
	function(){
  $(this).animate({ 
    marginBottom: "0px"
  }, 400 );
}
);
$("a").hover(
	function(){
  $(this).animate({ 
    opacity: 0.7
  }, 400 );
},
	function(){
  $(this).animate({ 
    opacity: 1
  }, 400 );
}
);
