//Script courtesy of http://www.web-source.net - Your Guide to Professional Web Site Design and Development;
	var current = 0
	var x = 0
	var speed = 15
	var speed2 = 2222
	var spido;
	var spido2;
	var stati;
		typ = new initArray(15)
		typ[0]=" \u2022 \u00A9 "
		typ[1]=" \u2022   r u r a q   "
		typ[2]=" \u2022  Animation  "
		typ[3]=" \u2022  ~ 2D|3D ~  "
		typ[4]=" \u2022  ~ Audio ~  "
		typ[5]=" \u2022    "
		typ[6]=" \u2022    "
		typ[7]=" \u2022  since 1994  "
		typ[8]=" \u2022    "
		typ[9]=" \u2022    "
		typ[10]=" \u2022    "
		typ[11]=" \u2022    "
		typ[12]=" \u2022    "
		typ[13]=" \u2022  c r e a r  "
		typ[14]=" \u2022 "

function initArray(n) {
this.length = n;
	for (var i =1; i <= n; i++) {
	this[i] = ' '		}
}


function vari(es){	 
	stati= es;
	if (stati=="on"){
		stati=="off"
		typewrite();
	}
	else{clearTimeout(spido);
		clearTimeout(spido2);
	}
}

function typewrite() {
	var m = typ[current]
	window.status = unescape('%20%20%20%20%20%20%20%20')+m.substring(0, x++) + "\u2022"
	if (x == m.length + 1) {
		x = 0
		current++
		if (current > typ.length - 1) {
			current = 0	
		}
		spido2=setTimeout("vari('on')", speed2)		
	}
	else { spido=setTimeout("vari('on')", speed)	}
}


