(function(c){function b(d){var g=d.length,e;while(g){var e=Math.floor((g--)*Math.random());var f=d[g];d[g]=d[e];d[e]=f}}function a(){var d=Math.floor(Math.random()*62);if(d>=52){return String.fromCharCode(d-4)}else{if(d>=26){return String.fromCharCode(d+71)}else{return String.fromCharCode(d+65)}}}c.fn.rot13=function(){this.each(function(){c(this).text(c(this).text().replace(/[a-z0-9]/ig,function(d){var e=d.charCodeAt(0);if(e>=65&&e<=90){e=65+((e-52)%26)}else{if(e>=97&&e<=122){e=97+((e-84)%26)}else{if(e>=48&&e<=57){e=48+((e-43)%10)}}}return String.fromCharCode(e)}))});return this};c.fn.scrambledWriter=function(){this.each(function(){var i=c(this),h=i.text(),d=0,e=/[^\s]/g,f=a,g=3;i.text("");var j=setInterval(function(){i.text(h.substring(0,d)+h.substring(d,h.length).replace(e,f));d+=g;if(d>=h.length+g){clearInterval(j)}},100)});return this};c.fn.typewriter=function(){this.each(function(){var f=c(this),e=f.text(),d=0;f.text("");var g=setInterval(function(){f.text(e.substring(0,d++)+(d&1?"":""));if(d>=e.length){clearInterval(g)}},100)});return this};c.fn.unscramble=function(){this.each(function(){var k=c(this),l=k.text(),g=/[^\s]/,d=[],f=[],m=25,h=a;for(var j=0;j<l.length;j++){if(l[j].match(g)){d.push(h());f.push(j)}else{d.push(l[j])}}b(f);k.text(d.join(""));var e=setInterval(function(){var n,o=m;while(o--&&f.length){n=f.pop();d[n]=l[n]}for(n=0;n<f.length;n++){d[f[n]]=h()}k.text(d.join(""));if(f.length==0){clearInterval(e)}},100)});return this}})(jQuery);
