﻿// JScript File
var howOften = 5; //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]="NetGain Sponsors Secret City Festival <a class=about href=/latest_news.aspx?i=1 >Read More...</a>";
   items[1]="NetGain Leaders Attend Mental Health in the Workplace Conference <a class=about href=/latest_news.aspx?i=2 >Read More...</a>";
   items[2]="NetGain Sponsors “Walk Like MADD” Event <a class=about href=/latest_news.aspx?i=3 >Read More...</a>";
   items[3]="NetGain Supports Effort to Honor Anniversary of Women’s Suffrage <a class=about href=/latest_news.aspx?i=4 >Read More...</a>";   
   items[4]="NetGain Commended by the Tennessee Department of Health <a class=about href=/latest_news.aspx?i=5 >Read More...</a>";
   items[5]="Performance Earns High Praise from DOE <a class=about href=/latest_news.aspx?i=6 >Read More...</a>";
   items[6]="2010 DREAM Big Small Business of the Year Award Free Enterprise Honoree <a class=about href=/latest_news.aspx?i=7 >Read More...</a>";
   items[7]="NetGain President/CEO Appointed to<br> SunTrust Advisory Board of Directors <a class=about href=/latest_news.aspx?i=8 >Read More...</a>";
   items[8]="NetGain Ranked #231 on Entrepreneur<br> Magazine’s Top 500 List <a class=about target=_Blank href=Docs/NetGain_HOT_500_2007.pdf >Read More...</a>";
   items[9]="New Job Openings with NetGain.<br> Go to our <a class=about href=career.aspx >Careers page</a> for more information about vacancies in<br> Tennessee and New Mexico";
   items[10]="NetGain Corporation, in partnership with Wackenhut Services Incorporated, is very pleased to announce the award of the NASA Agency-wide Protective Services contract.<a class=about href=/latest_news.aspx?i=10 >Read More...</a>";
   //items[10]="NetGain Corporation is pleased to announce a 100% percent award-fee earned for services rendered in calendar year 2008 and 2009 on their Personnel Security and Facility Clearance Program Support Services contract.<a class=about href=/latest_news.aspx?i=12 >Read More...</a>";
   items[11]="Customer Feedback <a class=about href=/latest_news.aspx?i=11 >Read More...</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==items.length-1) ? 0 : current + 1; //increment or reset
    setTimeout("rotater()",howOften*700);
}
window.onload=rotater;