
function changeimage(n)
{
	currentImg += n;
	if (currentImg < 0)
		currentImg = images-1;
	else if (currentImg > (images-1))
		currentImg = 0;
	var url = 'collection.asp?city=' + city[currentImg];
	window.location = url;
}

