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 deployed Microsoft’s Rights   Management Services platform throughout their enterprise to protect confidential   account information that was typically shared with others within their ... </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 in early November 2008 via   on-line meetings and web demo. Our Enterprise Plus product was introduced   as a solution to their need to share but protect their data  ...</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 institution was looking for a solution that would enhance securing their   data and allow them to meet ...</i> <a href=media/Success_Story_Financial_Services.pdf target=_blank>Read More</a></p><BR><BR><BR>"; 
    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   so they could protect and share documents internally. Quickly, they found out   that they needed an easy way to share RMS protected email and documents with   external business partners as well ... </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 records and private data. However they needed  to be able to share RMS protected email and documents with doctors and other  healthcare professionals that work throughout their ... </i> <a href=media/Success_Story_Public_Sector.pdf target=_blank>Read More</a></p>"; 
    items[5]="<i><b>Law Firm<br>  </b>An international law firm based in New York City specializing  in both litigation and transactional capabilities with a focus on capital markets, finance and international arbitration as well as mergers and acquisitions ... </i> <a href=media/LawFirmSS.pdf target=_blank>Read More</a></p>"; 
    items[6]="<i><b>Electronic Design Automation Firm<br>  </b>The market leader in electronic design automation (EDA) technologies and engineering services implemented to design, verify, and prepare advanced semiconductors and systems for manufacturing ... </i> <a href=media/ElectronicDesignFirmSS.pdf target=_blank>Read More</a></p>"; 
    items[7]="<i><b>IT Infrastructure Firm<br>  </b>An IT infrastructure performance company, headquartered in San Francisco, CA that designs and manufactures a family of wide area network (WAN) optimization solutions ... </i> <a href=media/ITInfrastructureFirmSS.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];

			var whichQuote=get_random();
			current = whichQuote;
    //current = (current==items.length-1) ? 0 : current + 1; //increment or reset
    setTimeout("rotater()",howOften*1000);
}

function get_random()
{
    var ranNum= Math.floor(Math.random()*6);
    return ranNum;
}

window.onload=rotater;
//–>
