$(document).ready(function(){ 
	
	// show popup
	$(".info").hover(function(){
		$(this).focus();
		$(".popup").hide();
		$(this).parent().find(".popup").show();
	});
	
	// hide popup	
	$(".info").focusout(function() {
		$(this).parent().find(".popup").hide();
	});	
});
