<!--

// JavaScript for rotating the images/links in the globe on Jumpstartford.com

if (document.images) {
	globeImages = new Array(
		"http://cms.ran.org/fileadmin/images/jumpstartford/globe/globe_climate.jpg",
		"http://cms.ran.org/fileadmin/images/jumpstartford/globe/globe_destruction.jpg",
		"http://cms.ran.org/fileadmin/images/jumpstartford/globe/globe_health.jpg",
		"http://cms.ran.org/fileadmin/images/jumpstartford/globe/globe_war.jpg");
	globeLinks = new Array(
		"http://gx.freedomfromoil.org/",
		"http://gx.freedomfromoil.org/",
		"http://gx.freedomfromoil.org/",
		"http://gx.freedomfromoil.org/");
	thisGlobe = 0;
}

function cycleGlobe() {
	if (document.images) {
		if (document.getElementById("globe").complete) {
			if (++thisGlobe == globeImages.length) thisGlobe = 0;
			document.getElementById("globe").src = globeImages[thisGlobe];
		}
	}
	setTimeout("cycleGlobe()", 4300);
}

function gotoGlobe() {
	document.location.href = globeLinks[thisGlobe];
}

//-->