(function($)
{
	$.fn.popupPlacement2 = function(slotId) {
        return this.each(function()
        {
			var el = this;
			//var posTop = $("#"+slotId).position().top - ($(this).height() / 2) - 50;
			var posTop = $("#"+slotId).position().top - 100;
			$(el).remove().appendTo("#popupWrap")
				.wrap("<div style='position:absolute;top:"+posTop+"px;left:-10px;width:1px;height:1px;'></div>");
		});
	};

})(jQuery);
