<!-- // Please, feel free to copy, paste and use this script...
 // This script was written by Wowarea: <http://www.wowarea.com>
 // Begin the script!

 // variables

 var max=0;
 textlength=455;

 // array object

tl=new kwotes
(
//1 2 3 4 5 6
//"123456789+123456789+123456789+123456789+123456789+123456789+1234",

/*"Hello! As you can see, I'm showing you a nice script here...",
"This script is a kind of horizontal scroller!",
"In other words, text scrolls inside of this input field.",
"You could use it just for your amusement or even for advs,",
"(instead of banners for example).",
"Ok, I stop here...well...I don't want to bother you now... ;)",
" *** Enjoy!*** ",
"Oh, I was forgetting: you can't stop this scroller!!!",
"Pssst...just go back to previous page... ;) "
*/
" Site updated Nov. 11, 2009",
" Many new posters added",
" Sign up for our newsletter",
" Get advance notice of new stock",
" ",
"",
" ",
""
 
);

function kwotes() {
	max=kwotes.arguments.length;
	for (i=0; i<max; i++)
	this[i]=kwotes.arguments[i];
}

var x=pos=pos2=0;
var l=tl[0].length;

// scroller function 

function horiz_scroller() {
	if (pos2==0) {
		document.form1.text1.value=""; 
		// alert("Click here to start!");
		pos2=0;
	}
	document.form1.text1.value=tl[x].substring(0,pos)+"_";
	if (pos2==textlength) setTimeout("nothing()", 1)
	if(pos++==l){
	 
	pos=0;
	setTimeout("horiz_scroller()",5000);
	x++;
	if(x==max)
	x=0;
	l=tl[x].length;
	} 
	else
	setTimeout("horiz_scroller()",30);
	pos2++;
}

// End of script -->