No existe un evento llamado "hover"; hover es solo una funcion de jquery; lo que estas buscando es "
mouseover"
Código:
$('.Event').live('mouseover', function() {
$('.tip', this).fadeIn('slow');
return true;
}).live('mouseout', function() {
$('.tip', this).fadeOut('slow');
return false;
});