function Highlight(flag,index) {
	var el;
	if (index == 1) el = document.getElementById('venzonesplash');
	else if (index == 2) el = document.getElementById('villamaninsplash');
	else if (index == 3) el = document.getElementById('udinesplash');

	if (el != null) {
		var ch = GetImg(el);

		if (flag) {
			el.style.backgroundImage = 'url(images/cw.gif)';
			if (ch!= null) ch.style.borderColor = 'white';
		}
		else {
			el.style.backgroundImage = 'url(images/cb.gif)';
			if (ch!= null) ch.style.borderColor = 'black'; 
		}
	}

}

function GetImg(parent) {
	var childNode = parent.childNodes[0];
	if (childNode) {
		if (childNode.nodeName == 'IMG') return childNode;
		else return GetImg(childNode);
	}
	return childNode;
}