$(document).ready(function(){
	$(".globo").mouseover(function(){  
     $(this).animate({
     	top:"-10px"
     	},100);
   });
   
   $(".globo").mouseout(function(){  
     $(this).animate({
     	top:"0px"
     	},100);
   });
});