$(document).ready(function(){	

$('.funcao ').hide();
$('.aovivo_funcao ').hide();

$(".aovivo-video").bind('mouseover',function(event) {
$(".funcao").delay(400).fadeIn('slow');
}).bind('mouseout',function(event) {
$(".funcao").stop(true,true).delay(1000).fadeOut();
});

$(".aovivo-video").bind('mouseover',function(event) {
$(".aovivo_funcao").delay(400).fadeIn('slow');
}).bind('mouseout',function(event) {
$(".aovivo_funcao").stop(true,true).delay(1000).fadeOut();
});



}); 
