$(function(){
	
	$('#info').hide();
	
	$('#infoHover').hover(function(){
	$('#info').show();
	}, function() {
	$('#info').hide();
	});

});