	<!-- Original:  Robert Bui (astrogate@hotmail.com) -->
	<!-- Web Site:  http://astrogate.virtualave.net -->
	
	<!-- This script and many more are available free online at -->
	<!-- The JavaScript Source!! http://javascript.internet.com -->
	


function imageItem(image_location) {
	this.image_item = new Image();
	this.image_item.src = image_location;
}

function get_ImageItemLocation(imageObj) {
	return(imageObj.image_item.src)
}

function generate(x, y) {
	var range = y - x + 1;
	return Math.floor(Math.random() * range) + x;
}

function getNextImage() {
	if (random_display) {
		image_index = generate(0, number_of_image-1);
	}
	else {
		image_index = (image_index+1) % number_of_image;
	}
	var new_image = get_ImageItemLocation(image_list[image_index]);
	return(new_image);
}

function rotateImage(place) {
	var new_image = getNextImage();
	document[place].src = new_image;
	var country_switch = highlightCountry();
	var recur_call = "rotateImage('"+place+"')";
	setTimeout(recur_call, interval);
}

function highlightCountry(){
	var china = document.getElementById('ChinaDiv').style;
	var iran = document.getElementById('IranDiv').style;
	var pakistan = document.getElementById('PakistanDiv').style;
	var russia = document.getElementById('RussiaDiv').style;
	var venezuela = document.getElementById('VenezuelaDiv').style;
	var rLink = document.getElementById('rLink');
	
	switch(image_index){
		case 0:
			china.backgroundColor = '#d9a70e';
			iran.backgroundColor = '#dbc275';
			pakistan.backgroundColor = '#dbc275';
			russia.backgroundColor = '#dbc275';
			venezuela.backgroundColor = '#dbc275';
			rLink.href="china";
			rLink.title="View the China Report";
			break;
		case 1:
			china.backgroundColor = '#dbc275';
			iran.backgroundColor = '#d9a70e';
			pakistan.backgroundColor = '#dbc275';
			russia.backgroundColor = '#dbc275';
			venezuela.backgroundColor = '#dbc275';
			rLink.href="iran";
			rLink.title="View the Iran Report";
			break;
		case 2:
			china.backgroundColor = '#dbc275';
			iran.backgroundColor = '#dbc275';
			pakistan.backgroundColor = '#d9a70e';
			russia.backgroundColor = '#dbc275';
			venezuela.backgroundColor = '#dbc275';
			rLink.href="pakistan";
			rLink.title="View the Pakistan Report";
			break;
		case 3:
			china.backgroundColor = '#dbc275';
			iran.backgroundColor = '#dbc275';
			pakistan.backgroundColor = '#dbc275';
			russia.backgroundColor = '#d9a70e';
			venezuela.backgroundColor = '#dbc275';	
			rLink.href="russia";
			rLink.title="View the Russia Report";
			break;
		case 4:
			china.backgroundColor = '#dbc275';
			iran.backgroundColor = '#dbc275';
			pakistan.backgroundColor = '#dbc275';
			russia.backgroundColor = '#dbc275';
			venezuela.backgroundColor = '#d9a70e';
			rLink.href="venezuela";
			rLink.title="View the Venezuela Report";
			break;			
	}
	
	return true;
}

