function initFadeVideos() {
	jQuery('.videosMultimedia ul li img:not(.actual)').fadeTo(1, 0.5).hover(function() {
		jQuery(this).fadeTo('fast', 1);
	}, function() {
		jQuery(this).fadeTo('fast', 0.5);
	});
}

jQuery(function() {
	initFadeVideos();
});
