<!-- 
if (document.all){
Size=12;
Font='Tahoma';
Colour='#666699';

typespeed=50;
containerwidth=226;//Must be big enough to accomadate the longest message!!!
containerheight=12;

msg=new Array()
msg[0]="Herşeyi anlıyorum ama konuşamıyorum"; 
msg[1]="demek istemiyorsanız....."; 
msg[2]="Lisan Eğitiminde Tek Adres...";
msg[3]="ADRES LİSAN MERKEZİ";
msg[4]="Dil Eğitiminde......";
msg[5]="Kişiye Özel Çözümler...";
msg[6]="Tel:0-224-2336008";
msg[7]="www.adreslisan.com";

//Alter nothing past here!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Msgs="<div id='X' style='position:relative;"
+"width:"+containerwidth+";height:"+containerheight+";font-family:"+Font+";"
+"font-size:"+Size+";color:"+Colour+"'></div>";
fade=100;
next=0;
pos=0;
function Type(){
if (fade == 100) pos++;
if (msg[next].substring(pos-1,pos) == " ") pos++;
if (pos > msg[next].length*1.5) {fade-=3} 
if (fade <= 0) {fade=100;pos=0;next++} 
if (next == msg.length) {next=0} 
text=msg[next].substring(0,pos);
X.innerHTML=text;
X.style.filter='alpha(opacity='+fade+')';
setTimeout('Type()',typespeed);
}
}
// -->