// ****NOTE: THIS FILE HAS BEEN SUPERCEEDED BY tickerTape3.js**** //
// THE NEWS ARRAY IS NOW LOCATED IN /NEWS/INC/ticker.js //
// MAKE ANY CHANGES ACCORDINGLY //

var tickercontents=new Array()
tickercontents[0]="<a href='/news/press_5-11-2004.htm'>Aligo Named to Red Herring &ldquo;Top 100 Private Companies&rdquo;.</a>"
tickercontents[1]="<a href='/news/press_040420.htm'>Aligo Bolsters Japanese Presence With The Formation of Aligo Japan KK.</a>"
tickercontents[2]="<a href='/news/press_040330.htm'>Aligo announces new release of MobileAccess for groupware.</a>"
tickercontents[3]="<a href='/news/press_040330_2.htm'>Aligo announces free 30 day trial of MobileAccess for groupware.</a>"
tickercontents[4]="<a href='/news/press_040120.htm'>Aligo Secures $10.5 Million in Funding to Solidfy Leadership Position in Mobile Software.</a>"
tickercontents[5]="<a href='/news/press_040114.htm'>Aligo Announces WorkTrack, for Job, Time, and Location Management.</a>"
tickercontents[6]="<a href='/news/press_031216.htm'>Aligo Attracts Veteran Software Sales and Marketing Executives to Top Management Post.</a>"

//configure the below 2 variables to set the width/background color of the ticker
var tickerwidth='600px' //in "px" or "%"
var tickerbgcolor=''

//configure the below variable to determine the delay between ticking of messages (in miliseconds
var tickdelay=3000

////Do not edit pass this line////////////////

var currentmessage=0

function changetickercontent(){
if (document.layers){
document.tickernsmain.document.tickernssub.document.write(tickercontents[currentmessage])
document.tickernsmain.document.tickernssub.document.close()
}
else
crosstick.innerHTML=tickercontents[currentmessage]

if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}

function start_ticking(){
if (document.layers)
document.tickernsmain.visibility="show"
else
crosstick=document.getElementById? document.getElementById("tickerie") : document.all.tickerie
changetickercontent()
}

if (document.all||document.getElementById)
document.write('<div id="tickerie" style="width:'+tickerwidth+'; background-color:'+tickerbgcolor+'"></div>')
//window.onload=start_ticking