$(document).ready(function(){
	$(".bug").hover(function(){
		$(this).stop().animate({top:"-200"}, 600)
	}, function(){
		$(this).animate({top:"140"}, 2000)
	});
});