<!-- hide this script from non-javascript-enabled browsers// -----------------------------------------------------------------------------//	Scroll Box Function// -----------------------------------------------------------------------------var fcontent=new Array()// -----------------------------------------------------------------------------//	Set text to be displayed with along with HTML tags if desired// -----------------------------------------------------------------------------begintag='<font face="Arial" size=2>' //set opening tag, such as font declarationsfcontent[0]="<b>What\'s new?</b><br>New customer services for your convenience."fcontent[1]="We are able to process your orders at almost any schedule."fcontent[2]="We are always trying to find a better way to serve you."fcontent[3]="Can’t find the product you’re looking for?<br><br> Please call or email us at your convenience."closetag='</font>'// -----------------------------------------------------------------------------// set the scroll box parameters// -----------------------------------------------------------------------------var scrollbox_width='154px' // set scroll box widthvar scrollbox_height='100px' // set scroll box heightvar scrollbox_border_width='0' // set scroll box border widthvar scrollbox_border_color='#DDDDDD' // set scroll box border colorvar scrollbox_border_style='solid' // set scroll box border style// text color scheme #FFFFFF=(255,255,255)//var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(0,51,102)"//var endcolor=(fadescheme==0)? "rgb(0,51,102)" : "rgb(255,255,255)"//var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(68,102,136)"	// steel blue//var endcolor=(fadescheme==0)? "rgb(68,102,136)" : "rgb(255,255,255)"	// steel bluevar delay=3000 //set delay between message change (in miliseconds)//var startcolor=(fadescheme==0)? "rgb(67,67,67)" : "rgb(255,255,255)" // black text//var endcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(67,67,67)"		// black textvar startcolor=(fadescheme==0)? "rgb(67,67,67)" : "rgb(255,255,255)" // black textvar endcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(67,67,67)"		// black text//var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(68,102,136)"	// steel blue//var endcolor=(fadescheme==0)? "rgb(68,102,136)" : "rgb(255,255,255)"	// steel blue// -----------------------------------------------------------------------------// set the fade parameters// -----------------------------------------------------------------------------var fadescheme=0 // set 0 to fade text color from white to black, 1 for black to whitevar fadelinks=1  // links inside scroll box content can fade like text? 0 for no, 1 for yes.// -----------------------------------------------------------------------------// do not edit below this line// -----------------------------------------------------------------------------var hex=(fadescheme==0)? 255 : 0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 - changes the content in scroll box// -----------------------------------------------------------------------------function changecontent(){	if (index>=fcontent.length)		index=0	if (DOM2){		document.getElementById("scrollbox").style.color=startcolor		document.getElementById("scrollbox").innerHTML=begintag+fcontent[index]+closetag		linksobj=document.getElementById("scrollbox").getElementsByTagName("A")		if (fadelinks)			linkcolorchange(linksobj)		colorfade()	}	else if (ie4)		document.all.scrollbox.innerHTML=begintag+fcontent[index]+closetag	else if (ns4){		document.scrollboxns.document.scrollboxns_sub.document.write(begintag+fcontent[index]+closetag)		document.scrollboxns.document.scrollboxns_sub.document.close()	}	index++	setTimeout("changecontent()",delay+faderdelay)} // end function changecontent// -----------------------------------------------------------------------------// -----------------------------------------------------------------------------frame=20;// -----------------------------------------------------------------------------// function linkcolorchange()// -----------------------------------------------------------------------------function linkcolorchange(obj){if (obj.length>0){	for (i=0;i<obj.length;i++)		obj[i].style.color="rgb("+hex+","+hex+","+hex+")"	}} // end function linkcolorchange()// -----------------------------------------------------------------------------// function colorfade()// -----------------------------------------------------------------------------function colorfade() {	         	// 20 frames fading process	if(frame>0) {			hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depends on fade scheme		document.getElementById("scrollbox").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.		if (fadelinks)			linkcolorchange(linksobj)		frame--;		setTimeout("colorfade()",20);		}	else {		document.getElementById("scrollbox").style.color=endcolor;		frame=20;		hex=(fadescheme==0)? 255 : 0	}   } // end function colorfade()// -----------------------------------------------------------------------------// -----------------------------------------------------------------------------if (ie4||DOM2)	document.write('<div id="scrollbox" style="border:'+scrollbox_border_width+'px '+scrollbox_border_style+' '+	scrollbox_border_color+';width:'+scrollbox_width+';height:'+scrollbox_height+';padding:2px"></div>')window.onload=changecontent// stop hiding -->