$(document).ready(function(){
	$('.mappingIcons').find('.icon').hover(
		function() {
			$(this).find('.popupBox').show();
		},
		function() {
			$(this).find('.popupBox').hide();
		});
});