<!--

oldObj = '';
function show_picture(fil)
{
    window.document.getElementById('changepic').src=fil;
}

function switchHoverCitiesList(event, id) {

	if (navigator.appName == 'Microsoft Internet Explorer') {

		var tag = event.srcElement.tagName.toLowerCase();
		var obj = event.srcElement;

	}

	else {

		var tag = event.target.tagName.toLowerCase();
		var obj = event.target;

	}


	while (tag != 'li' && tag != 'body') {

		tag = obj.parentNode.tagName.toLowerCase();
		obj = obj.parentNode;

	}


	if (id == 1) {

		obj.className = 'active';

		if (oldObj && oldObj != obj) {

			oldObj.className = '';

		}

	}

	else {

		oldObj.className = '';

	}

	oldObj = obj;

}

//-->