// JavaScript Document

if (document.images) {
ads = new Array(3);
ads[0] = "dir_images/logos/algoma.gif";
ads[1] = "dir_images/logos/center.gif";
ads[2] = "dir_images/logos/fas.gif";
ads[3] = "dir_images/logos/gulfco.gif";
ads[4] = "dir_images/logos/ebb.gif";
ads[5] = "dir_images/logos/css_logo.jpg";
}

newplace = new Array(3);
newplace[0] = "http://www.iopfund.com/portfolio/algoma_hardwoods.html";
newplace[1] = "http://www.iopfund.com/portfolio/center_manufacturing.html";
newplace[2] = "http://www.iopfund.com/portfolio/fas_controls.html";
newplace[3] = "http://www.iopfund.com/portfolio/gulfco.html";
newplace[4] = "http://www.iopfund.com/portfolio/EB_Bradley.htm";
newplace[5] = "http://www.iopfund.com/portfolio/CarlsonSystemsHoldingsInc.IndustrialOpportunityPartnersIOP.htm"

var timer = null
var	 counter = 0

function banner() {
	if(document.getElementById("home")) {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 6)
		counter = 0;
		document.bannerad.src = ads[counter];
	}
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}
