var image_down= new Image();
image_down.src = 'images/go_over_down.gif';

var image_map= new Image();
image_map.src = 'images/covered.jpg';

var image_cv= new Image();
image_cv.src = 'images/map_mini.jpg';
var flips=9;

function flip(n) {
//	alert(document.getElementById('flip_img').src);

	if (n%2 || n > flips) {
		document.getElementById('flip_img').src=image_map.src;

	} else {
		document.getElementById('flip_img').src=image_cv.src;
	}
	n++;
	if (n < flips) {setTimeout("flip("+n+")",2400);
	}
}

if (document.location.pathname=="/index.html" || document.location.pathname=="index.html") setTimeout("flip(0)",2400);

