//when page is loaded
window.addEvent('domready', function(){
	
	//call mooTicker
	var initTicker = new mooTicker({
		container: $('mooTicker'),//where the data be taken from/or if empty, put into to?
		delay: 50,//time before next character is added
		variance: 0,//No one types at the same speed. Variance allows for random letter delay changes
		backChar: '|',//Which character signifies a backspace?
		backDelay: 30,//How quickly should the typewriter delete?
		maxChars: null,//set a limit to amount of characters allowed (null = no limit)
		nxtMsgDelay: null,//time between displaying next message in seconds (null =  auto calculate)
		typoLength: 5,//max length you want typos to be
		nextMsgPause: 5//pause before showing next message (in seconds)
	});
});