<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var current = 0;
var x = 0;
var speed = 50;
var speed2 = 5000;
var skippattern=/<\S[^><]*>/g;

function typewrite() {
	var m = typ[current];
	var matcharray=m.substr(x).match(skippattern);
	if (matcharray){
		if (m.indexOf(matcharray[0])==x){
			x=x+matcharray[0].length;
		}
		
	}
	document.getElementById('ticker').innerHTML = m.substring(0, x++)
	if (x == m.length + 1) {
		x = 0;
		current++;
		if (current > typ.length - 1) {
			current = 0;
		}
		setTimeout("typewrite()", speed2);
	}
	else {
		setTimeout("typewrite()", speed);
	}
}
//-->