jQuery.notifyBar=function(a){(function(c){var b=notifyBarNS={};notifyBarNS.shown=false;if(!a){a={}}notifyBarNS.html=a.html||"Your message here";notifyBarNS.delay=a.delay||2000;notifyBarNS.animationSpeed=a.animationSpeed||200;notifyBarNS.jqObject=a.jqObject;notifyBarNS.cls=a.cls||"";if(notifyBarNS.jqObject){b=notifyBarNS.jqObject;notifyBarNS.html=b.html()}else{b=c("<div></div>").addClass("jquery-notify-bar").addClass(notifyBarNS.cls).attr("id","__notifyBar")}b.html(notifyBarNS.html).hide();var d=b.attr("id");switch(notifyBarNS.animationSpeed){case"slow":asTime=600;break;case"normal":asTime=400;break;case"fast":asTime=200;break;default:asTime=notifyBarNS.animationSpeed}if(b!="object"){}c("body").prepend(b);b.slideDown(asTime);if(b.attr("id")=="__notifyBar"){setTimeout("$('#"+d+"').slideUp("+asTime+", function() {$('#"+d+"').remove()});",notifyBarNS.delay+asTime)}else{setTimeout("$('#"+d+"').slideUp("+asTime+", function() {$('#"+d+"')});",notifyBarNS.delay+asTime)}})(jQuery)};