(function(a){toasting=false;toastQue=[];a.toast=function(c){return new b(c)};var b=function(d){var e={message:"This is a Toast",displayTime:2000,inTime:300,outTime:200,maxWidth:400};if(!window.toasting){window.toasting=true;var c;d=a.extend(e,d);c=a("<div class='toast'>"+d.message+"</div>");a("body").append(c);c.css({"max-width":d.maxWidth+"px",top:((a(window).height()-c.outerHeight())/2)+a(window).scrollTop()+"px",left:((a(window).width()-c.outerWidth())/2)+a(window).scrollLeft()+"px"});c.fadeIn(d.inTime);setTimeout(function(){c.fadeOut(d.outTime,function(){c.remove();window.toasting=false;if(window.toastQue.length>0){next=window.toastQue.pop();a.toast(next)}})},d.displayTime)}else{window.toastQue.unshift(d)}}})(jQuery);
