function showHomePopup(theTitle,theID) {
	var itemOffset = jQuery(""+theID+"").offset();
	var popupX = itemOffset.left;
	var popupY = itemOffset.top;
	jQuery("#landingPopup").html(theTitle);
	var popupTotalHalfWidth = Math.ceil(jQuery("#landingPopup").width()/2)+10;
	jQuery("#landingPopup").css("left",Math.ceil(popupX)-popupTotalHalfWidth+(Math.ceil(jQuery(""+theID+"").width()/2))+"px");
	jQuery("#landingPopup").css("top",Math.ceil(popupY)-40+"px");
	jQuery("#landingPopup").fadeIn("fast");
}

function hideHomePopup() {
	jQuery("#landingPopup").css("display","none");
}