var bannerArray = new Array();
var myCount=0;
// Banner Code Assignment
bannerArray[0] = "<A HREF=\"http://www.swdiesel.com/index.php?main_page=page_2\"><IMG SRC=\"http://www.swdiesel.com/images/aFe/afe.gif\" alt=\"afe\" border=\"0\" width=\"800\" height=\"100\"></A>";
bannerArray[1] = "<A HREF=\"http://www.swdiesel.com/images/banners/emailholiday.jpg\" target=\"_blank\"><IMG SRC=\"http://www.swdiesel.com/images/banners/glowplugs.gif\" alt=\"glow\" border=\"0\" width=\"800\" height=\"100\"></A>";
bannerArray[2] = "<A HREF=\"http://www.swdiesel.com\"><IMG SRC=\"http://www.swdiesel.com/images/banners/garage.gif\" alt=\"garage\" border=\"0\" width=\"800\" height=\"100\"></A>";
bannerArray[3] = "<A HREF=\"http://www.swdiesel.com\"><IMG SRC=\"http://www.swdiesel.com/images/banners/bdbanner.gif\" alt=\"bd\" border=\"0\" width=\"800\"height=\"100\"></A>";
bannerArray[4] = "<A HREF=\"http://www.swdiesel.com\"><IMG SRC=\"http://www.swdiesel.com/images/banners/vp44banner.gif\"  alt=\"vp44\" border=\"0\" width=\"800\"height\"100\"></A>";

bannerRotate();

function bannerRotate() {

if(myCount > bannerArray.length-1){myCount=0;}

// Write out rotation
	if (document.all){			// it is IE
		document.all.l3.innerHTML=bannerArray[myCount];
	}

	else if (document.layers){	// it is NN

		document.getElementById("l3").innerHTML=bannerArray[myCount];
	}
	else
	{
		document.getElementById("l3").innerHTML=bannerArray[myCount];
	}

setTimeout("bannerRotate()", 5000);
myCount++;
}

