		// News Articles:
		var tickercontents=new Array();
		tickercontents[1]='<span class="category">Enterprise. </span> \'SimplyBox inside SAP CRM\' show-cased by SAP at SAP World Tour';
		tickercontents[2]='<span class="category">Education. </span> SchoolCenter signs on as exclusive SimplyBox reseller for the K-12 space';
		tickercontents[3]='<span class="category">Enterprise. </span> ecenta and SimplyBox sign reselling partnership targeting the Enterprise';
		tickercontents[4]='<span class="category">Enterprise. </span> Gartner labels SimplyBox <i><b>"Cool"</i></b> & <i><b>"One to pay attention to"</b></i> for Enterprise Collaboration/Social Technology';
		tickercontents[5]='<span class="category">Enterprise. </span> SimplyBox presents at SAP CRM Virtual Influencer Summit';
		tickercontents[0]='<span class="category">Education. </span> See SimplyBox presented by SchoolCenter at T+L Conference (Oct. 28 - 30) ';
		tickercontents[6]='<span class="category">Education. </span> SimplyBox wins Top 25 Websites for Teaching and Learning Award.';				
		
		var tickdelay=8000;		// in miliseconds
		var currentmessage=0;
		var intervalID;
		var crosstick;
		
		function nextarticle(){
			
			crosstick.innerHTML=tickercontents[currentmessage];		
			if (currentmessage==tickercontents.length-1) currentmessage=0;
			else currentmessage++;
		}
		
		function start_ticking(){
			crosstick=document.getElementById? document.getElementById("article") : document.all.article;
			crosstick.innerHTML=tickercontents[currentmessage];
			if (currentmessage==tickercontents.length-1) currentmessage=0;
			else currentmessage++;
			intervalID = setInterval ("nextarticle()",tickdelay);
		}
		
		function stop_ticking(){
			clearInterval(intervalID);
		}

