/**
 * Pin Popups
 */
$(document).ready(function(){
	$('#mappingIcons').find('a').hover(
		function() {
			$(this).find('.popupBox').show();
		},
		function() {
			$(this).find('.popupBox').hide();
		});
})	