	var delay=4500 //set delay between message change (in miliseconds)
	var fcontent=new Array()
	begintag=''
	//set opening tag, such as font declarations

	
	fcontent[0]="<b>Zafar Alam</b> -  I am very happy to say that my listing in Aligarh Directory gave a new horizon to my business. My business began expanding at an unprecidented rate. Thanx a lot."
	
	fcontent[1]="<b>Javed Akhter</b> - I am very happy to find such an eye catching website displaying high quality images of the products. I am more than satisfied by the way they deal a customer."
	
	fcontent[2]="<b>Nathan Aldus</b> - I was searching for an Indian company exporting high quality Jewelry since four months. Now i am fully satisfied with what i searched on AligarhDirectory.com."
	
	fcontent[3]="<b>Zafar Alam</b> -  I am very happy to say that my listing in Aligarh Directory gave a new horizon to my business. My business began expanding at an unprecidented rate. Thanx a lot.."
	fcontent[4]="<b>Faisal Sherwani</b> -  AOA, to all memebers , U cant think how much am pleased to see that,am from Pakistan , wants to set it also for friegners thnx"
	fcontent[5]="<b>Javed Akhter</b> - I am very happy and satisfied with AligarhDirectory.com."
	
	fcontent[6]="<b>Nathan Aldus</b> - I was searching for an Indian company exporting high quality Jewelry since four months. Now i am fully satisfied with what i searched on AligarhDirectory.com."
	
	fcontent[7]="<b>Zafar Alam</b> -  I am very happy to say that my listing in Aligarh Directory gave a new horizon to my business. My business began expanding at an unprecidented rate. Thanx a lot."
	fcontent[8]="<b>Faisal Sherwani</b> -  AOA, to all memebers , U cant think how much am pleased to see that,am from Pakistan , wants to set it also for friegners thnx"
     fcontent[9]="Please help us to improve the content and look n feel of our website by sending us your feedback as it is invaluable to us. THANX " 
	closetag=''
	var fwidth=153 //set scroller width
	var fheight=100 //set scroller height

	

	var ie4=document.all&&!document.getElementById
	var ns4=document.layers
	var DOM2=document.getElementById
	var faderdelay=0
	var index=0

	if (DOM2)
	faderdelay=2000

	
	function changecontent(){
	if (index>=fcontent.length)
	index=0
	if (DOM2){
	document.getElementById("fscroller").style.color="rgb(255,255,255)"
	document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
	colorfade()
	}
	else if (ie4)
	document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
	else if (ns4){
	document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
	document.fscrollerns.document.fscrollerns_sub.document.close()
	}

	index++
	setTimeout("changecontent()",delay+faderdelay)
	}



	frame=20;
	hex=0  // Initial color value.

	function colorfade() {
	// 20 frames fading process
	if(frame>0) {
	hex-=12; // increase color value
	document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
	frame--;
	setTimeout("colorfade()",20);
	}
	else{
	document.getElementById("fscroller").style.color="rgb(255,255,255)";
	frame=20;
	hex=255
	}
	}

	if (ie4||DOM2)
	document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:1px"></div>')

	window.onload=changecontent
	