$(function(){
	$('#description span').hide();
	$('#ventures a').hover(
		function(){$('#description span').html($(this).attr('title')).fadeIn('slow')},
		function(){$('#description span').hide()}
	);

});