function countryswitch() {
	if(document.getElementById('cswitch').style.display == 'block') {
		document.getElementById('cswitch').style.display = 'none';
	} else {
		document.getElementById('cswitch').style.display = 'block';
	}
}

function init_page(){
	document.getElementById('cswitch').style.display = 'none';
}

function startList() {
	var node;
	if (document.all&&document.getElementById) {
		var navRoot = document.getElementById("tem_navigation");
		var navigation = navRoot.childNodes[0];
		
		for (i=0; i<navigation.childNodes.length; i++) {
			node = navigation.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

function printPage(url) {
	var printWindow = window.open(url, 'print', 'dependent=yes,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width=600');
}
