	//slider's width
	var swidth1 = 120;

	//slider's height
	var sheight1 = 100;

	//slider's speed
	var sspeed1 = 1;

function start_1(){
	if (document.all){
		ieslider1_1.style.top=sheight1;
		iemarquee_1(ieslider1_1);
	}
	else if (document.layers){
		document.ns4slider_1.document.ns4slider1_1.top=sheight1;
		document.ns4slider_1.document.ns4slider1_1.visibility='show';
		ns4marquee_1(document.ns4slider_1.document.ns4slider1_1);
	}
	else if (document.getElementById&&!document.all){
		document.getElementById('ns6slider1_1').style.top=sheight1;
		ns6marquee_1(document.getElementById('ns6slider1_1'));
	}
}

function iemarquee_1(whichdiv){
	iediv1=eval(whichdiv);
	if (iediv1.style.pixelTop>0&&iediv1.style.pixelTop<=sspeed1){
		iediv1.style.pixelTop=0;
		setTimeout("iemarquee_1(iediv1)",100);
	}

	if (iediv1.style.pixelTop>=sheight1*-1-40){
		iediv1.style.pixelTop-=sspeed1;
		setTimeout("iemarquee_1(iediv1)",100);
	}
	else{
		iediv1.style.pixelTop=sheight1;
		iediv1.innerHTML=singletext2[counter3];

		if (counter3==singletext2.length-1)
			counter3=0;
		else
			counter3++;
	}
}

function ns4marquee_1(whichlayer){
	ns4layer1=eval(whichlayer);
	if (ns4layer1.top>0&&ns4layer1.top<=sspeed1){
		ns4layer1.top=0;
		setTimeout("ns4marquee_1(ns4layer1)",100);
	}
	if (ns4layer1.top>=sheight1*-1){
		ns4layer1.top-=sspeed1;
		setTimeout("ns4marquee_1(ns4layer1)",100);
	}
	else{
		ns4layer1.top=sheight1;
		ns4layer1.document.write(singletext22[counter3]);
		ns4layer1.document.close();

		if (counter3==singletext2.length-1)
			counter3=0;
		else
			counter3++;
	}
}

function ns6marquee_1(whichdiv){
	ns6div1=eval(whichdiv);
	if (parseInt(ns6div1.style.top)>0&&parseInt(ns6div1.style.top)<=sspeed1){
		ns6div1.style.top=0;
		setTimeout("ns6marquee_1(ns6div1)",100);
	}
	if (parseInt(ns6div1.style.top)>=sheight1*-1){
		ns6div1.style.top=parseInt(ns6div1.style.top)-sspeed1;
		setTimeout("ns6marquee_1(ns6div1)",100);
	}	
	else{
		ns6div1.style.top=sheight1;
		ns6div1.innerHTML=singletext2[counter3];
		if (counter3==singletext2.length-1)
			counter3=0
		else
			counter3++
	}
}

