	var delayb4scroll=1000; //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
	var marqueespeed=2; //Specify marquee scroll speed (larger is faster 1-10)
	var pauseit=1; //Pause marquee onMousever (0=no. 1=yes)?
	var copyspeed=marqueespeed;
	var pausespeed=(pauseit==0)? copyspeed: 0;
	var actualheight='';
	var actualwidth='';
	
	/*---------------------------------------------------------------------------------------------------------*/	
	function scrollmarquee(){
	/*---------------------------------------------------------------------------------------------------------*/	
		if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
			cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px";
		else
			cross_marquee.style.top=parseInt(marqueeheight)+8+"px";
	}
	
	/*---------------------------------------------------------------------------------------------------------*/	
	function scrollmarquee2(){
	/*---------------------------------------------------------------------------------------------------------*/	
		if (parseInt(cross_marquee2.style.left)>(actualwidth*(-1)+8))
			cross_marquee2.style.left=parseInt(cross_marquee2.style.left)-(copyspeed*1)+"px";
		else {
			cross_marquee2.style.left=parseInt(marqueewidth)+8+"px";
		}	
	}

	/*---------------------------------------------------------------------------------------------------------*/	
	function scrollmarquee3(){
	/*---------------------------------------------------------------------------------------------------------*/	
		if (parseInt(cross_marquee3.style.left)>(actualwidth*(-1)+8))
			cross_marquee3.style.left=parseInt(cross_marquee3.style.left)-(copyspeed*1)+"px";
		else {
			cross_marquee3.style.left=parseInt(marqueewidth)+8+"px";
		}	
	}

	/*---------------------------------------------------------------------------------------------------------*/	
	function initializemarquee(){
	/*---------------------------------------------------------------------------------------------------------*/	
		if(document.getElementById("vmarquee")){
			cross_marquee=document.getElementById("vmarquee");
			cross_marquee.style.top=0;
			marqueeheight=document.getElementById("marqueecontainer").offsetHeight;
			actualheight=cross_marquee.offsetHeight;
			if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
				cross_marquee.style.height=marqueeheight+"px";
				cross_marquee.style.overflow="scroll";
				return;
			}
			setTimeout('lefttime=setInterval("scrollmarquee()",50)', delayb4scroll*2);
		}	
	}

	/*---------------------------------------------------------------------------------------------------------*/	
	function initializemarquee2(){
	/*---------------------------------------------------------------------------------------------------------*/	
		if(document.getElementById("vmarquee2")){
			cross_marquee2=document.getElementById("vmarquee2");
			marqueewidth=document.getElementById("marqueecontainer2").offsetWidth;
			cross_marquee2.style.left=marqueewidth;
			actualwidth=cross_marquee2.offsetWidth;
			if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
				cross_marquee2.style.width=marqueewidth+"px";
				cross_marquee2.style.overflow="scroll";
				return;
			}
			setTimeout('lefttime2=setInterval("scrollmarquee2()",30)', delayb4scroll);
		}	
	}

	/*---------------------------------------------------------------------------------------------------------*/	
	function initializemarquee3(){
	/*---------------------------------------------------------------------------------------------------------*/	
		cross_marquee3=document.getElementById("vmarquee3");
		marqueewidth=document.getElementById("marqueecontainer3").offsetWidth;
		cross_marquee3.style.left=marqueewidth;
		setTimeout("cross_marquee3.style.visibility='visible';", 1300);
		actualwidth=cross_marquee3.offsetWidth;
		if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
			cross_marquee3.style.width=marqueewidth+"px";
			cross_marquee3.style.overflow="scroll";
			return;
		}
		setTimeout('lefttime3=setInterval("scrollmarquee3()",30)', delayb4scroll);
	}

