(function($){$.fn.jqPopup=function(options)
{var settings={};$.extend(settings,this.jqPopup.defaults,options);this.bind(settings.calleventType+".jqPopup",function(){var curel=$("#"+this.id);var pos=$(curel).position();var width=$("#"+settings.popupid).width();if(!settings.subtractPopupWidth)
{width=0;}
switch(settings.resType)
{case'toggle':$("#"+settings.popupid).css({top:settings.top+"px",left:pos.left-width-settings.shimLeft+"px"}).toggle();break;case'show':$("#"+settings.popupid).css({top:settings.top+"px",left:pos.left-width-settings.shimLeft+"px"}).show();break;}});return $(this).attr("id");};$.fn.jqPopup.defaults={popupid:'',top:0,subtractPopupWidth:false,shimLeft:0,calleventType:'',resType:'toggle'};})(jQuery);