$(document).ready( function() {
	
	$('.videos_base_interno').mouseover( function() {
		$('.videos_base_interno_nome', $(this)).stop(true, true).fadeIn();
	});
	
	$('.videos_base_interno').mouseout( function() {
		$('.videos_base_interno_nome', $(this)).stop(true, true).fadeOut();
	});
	
});
