<!--
//Created by Lin Lee on 3/2/2003

//Preloading images to browser cache.
banneradcode = 0;
function loadpage(){
	if (document.images) 
	{
		thetimer = setTimeout("changeimage()", 3000);
		listofimages = new Array(8);
		listofimages[0] = new Image()
		listofimages[0].src = "http://foreignaffairs.republicans.house.gov/images/rotating0.gif"
		listofimages[1] = new Image()
		listofimages[1].src = "http://foreignaffairs.republicans.house.gov/images/rotating1.gif"
		listofimages[2] = new Image()
		listofimages[2].src = "http://foreignaffairs.republicans.house.gov/images/rotating2.gif"
		listofimages[3] = new Image()
		listofimages[3].src = "http://foreignaffairs.republicans.house.gov/images/rotating3.gif"
		listofimages[4] = new Image()
		listofimages[4].src = "http://foreignaffairs.republicans.house.gov/images/rotating4.gif"
		listofimages[5] = new Image()
		listofimages[5].src = "http://foreignaffairs.republicans.house.gov/images/rotating5.gif"
		listofimages[6] = new Image()
		listofimages[6].src = "http://foreignaffairs.republicans.house.gov/images/rotating6.gif"
		listofimages[7] = new Image()
		listofimages[7].src = "http://foreignaffairs.republicans.house.gov/images/rotating7.gif"
	}
}

//Function for the slideshow on the lower left corner of the page.
function changeimage() {
	if (document.images) {
		banneradcode = banneradcode + 1
		if (banneradcode == "8") {
			banneradcode = 0
		}
		imagesource = "http://foreignaffairs.republicans.house.gov/images/rotating" + banneradcode + ".gif"
		window.document.bannerad.src = imagesource
		thetimer = setTimeout("changeimage()", 2000);
	}
	else if (!document.images) {
		// Do nothing
	}
}

//-->