/* MOUSER OVER FÜR MAIN NAV / DEUTSCH UND ITELINISCH */
function _overon(i) {
	document.getElementById("nav1"+i).style.backgroundColor = "#4C4C4C";
	document.getElementById("nav2"+i).style.backgroundColor = "#4C4C4C";
	
	document.getElementById("nav1"+i).style.borderLeft = "1px solid white";
	document.getElementById("nav1"+i).style.borderRight = "1px solid white";
	document.getElementById("nav2"+i).style.borderLeft = "1px solid white";
	document.getElementById("nav2"+i).style.borderRight = "1px solid white";
	
	document.getElementById("nav1"+i).style.marginRight = "3px";
	document.getElementById("nav1"+i).style.marginLeft = "3px";
	document.getElementById("nav2"+i).style.marginRight = "3px";
	document.getElementById("nav2"+i).style.marginLeft = "3px"; 

}
function _overout(i) {
	document.getElementById("nav1"+i).style.backgroundColor = "black";
	document.getElementById("nav2"+i).style.backgroundColor = "black";
	document.getElementById("nav1"+i).style.border = "0px solid white";
	document.getElementById("nav2"+i).style.border = "0px solid white";
/*
	document.getElementById("nav1"+i).style.marginRight = "3px";
	document.getElementById("nav1"+i).style.marginLeft = "3px";
	document.getElementById("nav2"+i).style.marginRight = "3px";
	document.getElementById("nav2"+i).style.marginLeft = "3px"; 
*/
}
/* MOUSER OVER FÜR SUB NAV / DEUTSCH UND ITELINISCH */
function _suboveron(i) {
	document.getElementById("subnav1"+i).style.backgroundColor = "#4C4C4C";
	document.getElementById("subnav2"+i).style.backgroundColor = "#4C4C4C";
}
function _suboverout(i) {
	document.getElementById("subnav1"+i).style.backgroundColor = "black";
	document.getElementById("subnav2"+i).style.backgroundColor = "black";
}