!function($){"use strict";var Typed=function(el,options){this.el=$(el);this.options=$.extend({},$.fn.typed.defaults,options);this.baseText=this.el.text()||this.el.attr('placeholder')||'';this.typeSpeed=this.options.typeSpeed;this.startDelay=this.options.startDelay;this.backSpeed=this.options.backSpeed;this.backDelay=this.options.backDelay;this.strings=this.options.strings;this.strPos=0;this.arrayPos=0;this.stopNum=0;this.loop=this.options.loop;this.loopCount=this.options.loopCount;this.curLoop=0;this.stop=!1;this.showCursor=this.isInput?!1:this.options.showCursor;this.cursorChar=this.options.cursorChar;this.isInput=this.el.is('input');this.attr=this.options.attr||(this.isInput?'placeholder':null);this.build()};Typed.prototype={constructor:Typed,init:function(){var self=this;self.timeout=setTimeout(function(){self.typewrite(self.strings[self.arrayPos],self.strPos)},self.startDelay)},build:function(){if(this.showCursor===!0){this.cursor=$(""+this.cursorChar+"");if(this.el.parent().find('.typed-cursor').length==0) this.el.after(this.cursor)} this.init()},typewrite:function(curString,curStrPos){if(this.stop===!0) return;var humanize=Math.round(Math.random()*(100-30))+this.typeSpeed;var self=this;self.timeout=setTimeout(function(){var charPause=0;var substr=curString.substr(curStrPos);if(substr.charAt(0)==='^'){var skip=1;if(/^\^\d+/.test(substr)){substr=/\d+/.exec(substr)[0];skip+=substr.length;charPause=parseInt(substr)} curString=curString.substring(0,curStrPos)+curString.substring(curStrPos+skip)} self.timeout=setTimeout(function(){if(curStrPos===curString.length){self.options.onStringTyped(self.arrayPos);if(self.arrayPos===self.strings.length-1){self.options.callback();self.curLoop++;if(self.loop===!1||self.curLoop===self.loopCount) return} self.timeout=setTimeout(function(){self.backspace(curString,curStrPos)},self.backDelay)}else{if(curStrPos===0) self.options.preStringTyped(self.arrayPos);var nextString=self.baseText+curString.substr(0,curStrPos+1);if(self.attr){self.el.attr(self.attr,nextString)}else{self.el.text(nextString)} curStrPos++;self.typewrite(curString,curStrPos)}},charPause)},humanize)},backspace:function(curString,curStrPos){if(this.stop===!0){return} var humanize=Math.round(Math.random()*(100-30))+this.backSpeed;var self=this;self.timeout=setTimeout(function(){var nextString=self.baseText+curString.substr(0,curStrPos);if(self.attr){self.el.attr(self.attr,nextString)}else{self.el.text(nextString)} if(curStrPos>self.stopNum){curStrPos--;self.backspace(curString,curStrPos)} else if(curStrPos<=self.stopNum){self.arrayPos++;if(self.arrayPos===self.strings.length){self.arrayPos=0;self.init()}else self.typewrite(self.strings[self.arrayPos],curStrPos)}},humanize)},reset:function(){var self=this;clearInterval(self.timeout);var id=this.el.attr('id');this.el.after('') this.el.remove();this.cursor.remove();self.options.resetCallback()}};$.fn.typed=function(option){return this.each(function(){var $this=$(this),data=$this.data('typed'),options=typeof option=='object'&&option;if(!data)$this.data('typed',(data=new Typed(this,options)));if(typeof option=='string')data[option]()})};$.fn.typed.defaults={strings:["These are the default values...","You know what you should do?","Use your own!","Have a great day!"],typeSpeed:0,startDelay:0,backSpeed:0,backDelay:500,loop:!1,loopCount:!1,showCursor:!0,cursorChar:"|",attr:null,callback:function(){},preStringTyped:function(){},onStringTyped:function(){},resetCallback:function(){}}}(window.jQuery)