$(document).ready(function() {
  $(".featurePopup").hide();
  $(".feature").mouseenter(function() {
	$(this).find(".featurePopup").slideDown();
	});
  
  $(".feature").mouseleave(function() {
	$(this).find(".featurePopup").slideUp();
	});
});
