

// Distributed by http://www.hypergurl.com

// Scrollers width here (in pixels)
var scrollerwidth="180px"

// Scrollers height here
var scrollerheight="220px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1
var scrollerInterval=75



// Scrollers content goes here! Keep all of the message on the same line!

var news = new Array();
//news[0] = 'AgileDelta, Inc. Hires Vice President of Marketing';
//news[1] = 'AgileDelta, Inc. Chief Technology Officer to Speak at SD West 2006';
//news[2] = 'AgileDelta, Inc. to Exhibit at CTIA Wireless 2006 in Las Vegas';
news[0] = 'AgileDelta, Inc. Announces Broad Availability of Efficient XML 2.0';
news[1] = 'AgileDelta, Inc. Offers Free 30-Day Evaluation Download of Efficient XML Software and Tools';
news[2] = 'AgileDelta CEO John Schneider discusses Efficient XML with InfoWorld Columnist Jon Udell';
news[3] = 'World Wide Web Consortium Selects AgileDelta\'s Efficient XML&trade; as Basis for Global Web Standard';
news[4] = 'AgileDelta, Inc. Announces Release of Apache Axis Web Services Integration Kits for Efficient XML&trade;';
news[5] = 'AgileDelta, Inc. Releases BEA WebLogic&reg; Web Services Integration Kit for Efficient XML&trade;';
news[6] = 'AgileDelta, Inc. Releases Efficient XML&trade; HTTP Proxy Server and Proxy Client';
news[7] = 'AgileDelta, Inc. Releases Efficient XML&trade; for Microsoft\'s .NET Framework';
news[8] = 'AgileDelta CTO John Schneider Discusses Efficient XML with Software Development Times';
news[9] = 'AgileDelta, Inc. Releases Efficient XML&trade; 3.0';
news[10] = 'AgileDelta, Inc. Releases Efficient XML&trade; 4.0';
news[11] = 'Efficient XML&trade; 4.0 provides full support for the W3C EXI Candidate Recommendation';
news[12] = 'W3C Extends Reach of XML to New Devices, Applications';


var links = new Array();

links[0] = null;
links[1] = null;
links[2] = null;
links[3] = null;
links[4] = null;
links[5] = null;
links[6] = null;
links[7] = null;
links[8] = "href='http://www.sdtimes.com/article/latestnews-20071015-10.html' target='_blank'";
links[9] = null;
links[10] = null;
links[11] = null;
links[12] = null;


var scrollercontent= "<table width='185' cellpadding='0' cellspacing='0'>";

for ( i = news.length - 1; i > -1 ; i--)
{
  var link;
  if (links[i] != null)
	link = links[i];
  else
	link = "href='inthenews" + (i + 4) + ".html'";  // +4 because old news items not displayed (see above)

  scrollercontent+= "<tr><td valign='top' align='left' width='24'><img src='images/greenarrow.jpg' align='top'/></td><td class='newsContent' valign='top' align='left'><a " + link + " class='news'>" +  news[i] + "</a><br><br></td></tr>";
}
scrollercontent+= "</table>";

var pauseit=1


// Change nothing below!

scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0

function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.top=parseInt(scrollerheight)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval("scrollscroller()",scrollerInterval)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
write('</ilayer>')
}
}
}


