function goToPrint() {
	s = new String(window.location);
	s += ((s.indexOf('?') == -1) ? '?' : '&' ) + 'print=1';
	window.location = s;
}

function MenuItemHover(td) {
	td.style.backgroundColor = '#567bd3';
	var Childs = td.childNodes;
	for(i=0; i<Childs.length; i++) {
		var Child = Childs.item(i);
		if (Child.className.toLowerCase() == 'submenu')
			Child.style.display = 'block';
	}
}

function MenuItemOut(td) {
	td.style.backgroundColor = 'transparent';
	var Childs = td.childNodes;
	for(i=0; i<Childs.length; i++) {
		var Child = Childs.item(i);
		if (Child.className.toLowerCase() == 'submenu')
			Child.style.display = 'none';
	}
}
