// Horizontal news scrolling AAYUR TECH
// Aayur news content-Corporate News,Admiral G S Ganesh joins Aayur Board of directors.,Growth aspirations: Two new facilities inaugurated.,New equipment at Aayur 4.,Citation from CIMILAC
// font12 color#cccccc

newsscroll_CONTENT = document.getElementById("newsscroll").innerHTML;newsscroll_RIGHTTOLEFT = false;newsscroll_SPEED = 1;newsscroll_STYLE = "font-family:Arial; font-size:12px; color:#CCCCCC";newsscroll_PAUSED = false;newsscroll_start();function newsscroll_start() {var newsscrollSupported = false;newsscroll_WIDTH = document.getElementById("newsscroll").style.width;var img = "<img src=newsscroll_space.gif width="+newsscroll_WIDTH+" height='0'>";if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Safari")!=-1) {document.getElementById("newsscroll").innerHTML = "<TABLE  cellspacing='0' cellpadding='0' width='100%'><TR><TD nowrap='nowrap'>"+img+"<SPAN style='"+newsscroll_STYLE+"' ID='newsscroll_BODY' width='100%'>&nbsp;</SPAN>"+img+"</TD></TR></TABLE>";newsscrollSupported = true;}if (navigator.userAgent.indexOf("MSIE")!=-1 && navigator.userAgent.indexOf("Opera")==-1) {document.getElementById("newsscroll").innerHTML = "<DIV nowrap='nowrap' style='width:100%;'>"+img+"<SPAN style='"+newsscroll_STYLE+"' ID='newsscroll_BODY' width='100%'></SPAN>"+img+"</DIV>";newsscrollSupported = true;}if(!newsscrollSupported) document.getElementById("newsscroll").outerHTML = ""; else {document.getElementById("newsscroll").scrollLeft = newsscroll_RIGHTTOLEFT ? document.getElementById("newsscroll").scrollWidth - document.getElementById("newsscroll").offsetWidth : 0;document.getElementById("newsscroll_BODY").innerHTML = newsscroll_CONTENT;document.getElementById("newsscroll").style.display="block";newsscroll_tick();}}function newsscroll_tick() {if(!newsscroll_PAUSED) document.getElementById("newsscroll").scrollLeft += newsscroll_SPEED * (newsscroll_RIGHTTOLEFT ? -1 : 1);if(newsscroll_RIGHTTOLEFT && document.getElementById("newsscroll").scrollLeft <= 0) document.getElementById("newsscroll").scrollLeft = document.getElementById("newsscroll").scrollWidth - document.getElementById("newsscroll").offsetWidth;if(!newsscroll_RIGHTTOLEFT && document.getElementById("newsscroll").scrollLeft >= document.getElementById("newsscroll").scrollWidth - document.getElementById("newsscroll").offsetWidth) document.getElementById("newsscroll").scrollLeft = 0;window.setTimeout("newsscroll_tick()", 30);}


