(function($) {
	$.fn.typer = function(settings) {
		var config = { 'speed': 10000 };
		debug(this);
	
		return this.each(function(){
			var $this = $(this);
			var txt = $this.text();
		
			$this.text('');
			$.each(txt, function(i){
				$this.append(txt.charAt(i));
			});
		});
	};
	function debug($obj) {
		if (window.console && window.console.log)
		  window.console.log($obj);
	};
})(jQuery);

