<!-- Begin
function MatrixClass (MyObject) {
	this.MyObject = MyObject;
	this.messages = new Array;
	this.speed = 750;
	this.messages[0] = "Welcom to www.andreabuschner.com ! This is the website of german born, Sydney based<br>photographer Andrea Buschner.</p>";
	this.messages[1] = "<p>To get an Idea of Andrea's work have a look around in the differen galleries. If you like what you see,<br>";
	this.messages[2] = "why not give her a call or click on contact us ?";
	this.messages[3] = "This is currently only a small taste of my work.<br>Enjoy the web site.";
	this.html  = "<div style='position:absolute;top:15%;left:20%;text-align:left;'><p>";
	this.html2 = "<div style='position:absolute;top:60%;left:20%;text-align:center'><p>"; 
	this.signature = "<img src='img/lastscan.jpg' width='169' height='38' style='position:absolute;top:70%;left:50%'>";

	this.MatrixWrite = function () {
		var i;
		var j;
		var timer = 0;
		var lineTowrite = ""; 
	
		document.getElementById('div_middel').innerHtml = this.html + "</p></div>";
		  
	    for(j = 0; j <= 3; j++) {
			lineTowrite = this.messages[j];
			for(i = 0; i <= lineTowrite.length; i++) {
				timer += 80 ;
				setTimeout(this.MyObject + '.WritoDoc("'+ this.html + lineTowrite.charAt(i) + ' </p></div>")', timer);
			}
			this.html += lineTowrite;
			if (j == 2)
				this.html += "</p></div>" + this.html2;
		}	
		document.getElementById('div_middel').innerHtml = this.html + "</p></div>" + this.signature;
		setTimeout(this.MyObject + '.WritoDoc("'+ this.html + + "</p></div>" + this.signature + '")', timer);
	}
	
	this.WritoDoc = function(lineTowrite) {
		document.getElementById('div_middel').innerHtml = lineTowrite;
	}
}

//  End -->
