// JavaScript Document

$(function(){

	$('.menuBlog').hover(function(){
		$('.balao_blog').animate({
			'opacity' 	: 'show',
			'top'		: 90	
		});
	},function(){
		$('.balao_blog').animate({
			'opacity' 	: 'hide',
			'top'		: 100	
		});
	});
})
