var howOften = 12; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();
    items[0]="<i><b>A Global Management Consulting Firm<br> </b>A leading consulting firm that focuses on assisting government clients solve their toughest problems with services in strategy, operations, organization  and change, and information technology recently ... </i> <a href=media/GMC_SS.PDF  target=_blank>Read More</a></p>"; 
    items[1]="<i><b>A Global Manufacturing Company</b> <br>  A global leader in silicones, silicone-base technology and innovation, this   company was an early adopter of the Microsoft Rights Management Services (RMS)   platform. GigaTrust began working with this client ...</i> <a href=media/Success_Story_Manufacturing.pdf target=_blank>Read More</a></p>"; 
    items[2]="<i><b>Global Financial Institution</b> <br>  A global financial institution offering banking, insurance and asset management   to private, corporate and institutional clients in more than 50 countries does   business online, over the phone and by mail. This ...</i> <a href=media/Success_Story_Financial_Services.pdf target=_blank>Read More</a></p>"; 
    items[3]="<i><b>Computer Networking Equipment and Software Company<br>  </b>An industry leader in data center networking solutions and services deployed   Microsoft’s Rights Management Services (RMS-protected) within the Legal and Finance departments ... </i> <a href=media/Success_Story_Information_Technology.pdf target=_blank>Read More</a></p>"; 
    items[4]="<i><b>A Large Government Organization<br>  </b>A large U.S. government organization implemented Microsoft’s Rights Management   Services (RMS) across their entire organization in order to facilitate secure exchange and collaboration of health care ... </i> <a href=media/Success_Story_Public_Sector.pdf target=_blank>Read More</a></p>"; 
	
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==items.length-1) ? 0 : current + 1; //increment or reset
    setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;
//–>

