var howOften = 10; //how often in seconds to rotate
var current = 0; 
var ns6 = document.getElementById&&!document.all; 

var items = new Array();
    items[0]="<a href='http://eu.globalsign.com/company/press/index.htm' class='news'><strong>Latest News:</strong></a> <a href='http://www.globalsign.com/company/press/081208_antwerp_adobe-cds.pdf' class='news' target='_blank'>December 8 2008 - Antwerp Port Authority Partners with GlobalSign to meet eVAT Legislation</a>";
    items[1]="<a href='http://eu.globalsign.com/company/press/index.htm' class='news'><strong>Latest News:</strong></a> <a href='http://eu.globalsign.com/company/press/240908-ev-ssl-webtrust.htm' class='news'>September 24 2008 - GlobalSign Awarded WebTrust Compliancy for Seventh Consecutive Year</a>";
    items[2]="<a href='http://eu.globalsign.com/company/press/index.htm' class='news'><strong>Latest News:</strong></a> <a href='http://eu.globalsign.com/company/press/180908-ssl-momentum.htm' class='news'>September 18 2008 - GlobalSign Shows Fastest SSL Growth Rates</a>";
    items[3]="<a href='http://eu.globalsign.com/company/press/index.htm' class='news'><strong>Latest News:</strong></a> <a href='http://eu.globalsign.com/company/press/150908-adobe-air.htm' class='news'>September 15 2008 - GlobalSign Code Signing Certificates Enhance Confidence &amp; Assurances for New Runtime Applications</a>";
    items[4]="<a href='http://eu.globalsign.com/company/press/index.htm' class='news'><strong>Latest News:</strong></a> <a href='http://eu.globalsign.com/company/press/220708-autocsr-one-click-ssl.htm' class='news'>September 1 2008 - GlobalSign Launches Revolutionary SSL Deployment Technology for Web Hosts</a>";
    items[5]="<a href='http://eu.globalsign.com/company/press/index.htm' class='news'><strong>Latest News:</strong></a> <a href='http://eu.globalsign.com/company/press/220508-resell-ssl-profit.htm' class='news'>July 16 2008 - GlobalSign's SSL Partner Program Opens Up New Revenue Streams</a>";



function rotater() {
    if(document.layers) {
        document.placeholderlayer.document.write(items[current]);
        document.placeholderlayer.document.close();
    }
    if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
        if(document.all)
            placeholderdiv.innerHTML=items[current];

    current = ((current + 1)==items.length) ? 0 : current + 1;
    setTimeout("rotater()",howOften*1000);
}