<!-- Hide from old browsers


var indexI = 1;
var banner1= new Image();
banner1.src = "images/ads/MCLE-full36units-468x60.jpg";
var banner2= new Image();
banner2.src = "images/ads/Pre-Lawbook468x60.jpg";
var banner3 = new Image();
banner3.src = "images/ads/Forbes468x60.jpg";
var banner4 = new Image();
banner4.src = "images/ads/FAQbook468x60.jpg";
var banner5 = new Image();
banner5.src = "images/ads/ICC468x60.jpg";
var banner6 = new Image();
banner6.src = "images/ads/BIRbook468x60.jpg";
var banner7 = new Image();
banner7.src = "images/ads/CGBPConsulting468x60.jpg";
var banner8 = new Image();
banner8.src = "images/ads/sample468x60.jpg";
var banner9= new Image();
banner9.src = "images/ads/MCLE-full36units-468x60.jpg";
var banner10 = new Image();
banner10.src = "images/ads/Pre-Lawbook468x60.jpg";
var banner11 = new Image();
banner11.src = "images/ads/Forbes468x60.jpg";
var banner12 = new Image();
banner12.src = "images/ads/FAQbook468x60.jpg";
var banner13 = new Image();
banner13.src = "images/ads/ICC468x60.jpg";
var banner14 = new Image();
banner14.src = "images/ads/BIRbook468x60.jpg";
var banner15 = new Image();
banner15.src = "images/ads/CGBPConsulting468x60.jpg";
var banner16 = new Image();
banner16.src = "images/ads/sample468x60.jpg";

var description = new Array();
description[1] = "2013 MCLE Full 36 Units Program";
description[2] = "Buy a copy of this book now";
description[3] = "Forbes College";
description[4] = "Buy a copy of this book now";
description[5] = "International Chamber of Commerce";
description[6] = "Buy a copy of this book now";
description[7] = "CGBP Consulting Group";
description[8] = "Advertise with us";
description[9] = "2013 MCLE Full 36 Units Program";
description[10] = "Buy a copy of this book now";
description[11] = "Forbes College";
description[12] = "Buy a copy of this book now";
description[13] = "International Chamber of Commerce";
description[14] = "Buy a copy of this book now";
description[15] = "CGBP Consulting Group";
description[16] = "Advertise with us";

var links = new Array();
links[1] = "";
links[2] = "http://www.cgbp.org/books.html";
links[3] = "http://www.forbes.edu.ph";
links[4] = "http://www.cgbp.org/books.html";
links[5] = "http://www.iccwbo.org";
links[6] = "http://www.cgbp.org/books.html";
links[7] = "";
links[8] = "http://www.cgbp.org/advertise.html";
links[9] = "";
links[10] = "http://www.cgbp.org/books.html";
links[11] = "http://www.forbes.edu.ph";
links[12] = "http://www.cgbp.org/books.html";
links[13] = "http://www.iccwbo.org";
links[14] = "http://www.cgbp.org/books.html";
links[15] = "";
links[16] = "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+=4; // 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 < 16) // The number 16 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];
}

// -->
