<!-- Hide from old browsers


var indexI = 1;
var banner1= new Image();
banner1.src = "images/ads/Pre-Lawbook468x60.jpg";
var banner2 = new Image();
banner2.src = "images/ads/GT468x60.jpg";
var banner3 = new Image();
banner3.src = "images/ads/ICC468x60.jpg";
var banner4 = new Image();
banner4.src = "images/ads/CGBPConsulting468x60.jpg";
var banner5 = new Image();
banner5.src = "images/ads/sample468x60.jpg";
var banner6 = new Image();
banner6.src = "images/ads/Pre-Lawbook468x60.jpg";
var banner7 = new Image();
banner7.src = "images/ads/GT468x60.jpg";
var banner8 = new Image();
banner8.src = "images/ads/ICC468x60.jpg";
var banner9 = new Image();
banner9.src = "images/ads/CGBPConsulting468x60.jpg";
var banner10 = new Image();
banner10.src = "images/ads/sample468x60.jpg";

var description = new Array();
description[1] = "Buy a copy of this book now";
description[2] = "Global Trainers";
description[3] = "International Chamber of Commerce";
description[4] = "CGBP Consulting Group";
description[5] = "Advertise with us";
description[6] = "Buy a copy of this book now";
description[7] = "Global Trainers";
description[8] = "International Chamber of Commerce";
description[9] = "CGBP Consulting Group";
description[10] = "Advertise with us";

var links = new Array();
links[1] = "";
links[2] = "http://www.globaltrainers.us";
links[3] = "http://www.iccwbo.org";
links[4] = "http://www.cgbp.org/consulting.html";
links[5] = "http://www.cgbp.org/advertise.html";
links[6] = "";
links[7] = "http://www.globaltrainers.us";
links[8] = "http://www.iccwbo.org";
links[9] = "http://www.cgbp.org/consulting.html";
links[10] = "http://www.cgbp.org/advertise.html";


function startTime()
{
        var curDate= new Date();
        hours= curDate.getHours();
        mins= curDate.getMinutes();
        secs= curDate.getSeconds();
        closeTime=hours*3600+mins*60+secs;
        closeTime+=5; // How many seconds til the next rotation
        Timer();
}

function Timer(){
        var curDate= new Date();
        hours= curDate.getHours();
        mins= curDate.getMinutes();
        secs= curDate.getSeconds();
        curTime=hours*3600+mins*60+secs
        if (curTime>=closeTime)
        {
    		if (indexI < 10) // The number 10 is the amount of banners that you have
            {
    			indexI++;
    			document.getElementById("banner").src = eval("banner" + indexI + ".src");
    		}
    		else
            {
    			indexI = 1;
    			document.getElementById("banner").src = eval("banner" + indexI + ".src");
    		}
    		startTime();
    	}
        else
        {
                window.setTimeout("Timer()",1000)
        }

}

function clickLink(){
	top.location = links[indexI];
}

function descript(){
	window.status = description[indexI];
}

// -->