/* Scripts necesarios para el centrado de los menús desplegables al variar el tamaño de la ventana */

function repositionMenu() {
	var newLeft = getWindowWidth() / 2 + myOffset;
	myMenu.container.style ? myMenu.container.style.left = newLeft + "px" : myMenu.container.left = newLeft;
	}
		
function repositionMenu2() {
	var newLeft = getWindowWidth() / 2 + myOffset2;
	myMenu2.container.style ? myMenu2.container.style.left = newLeft + "px" : myMenu2.container.left = newLeft;
	}
		
function repositionMenu3() {
	var newLeft = getWindowWidth() / 2 + myOffset3;
	myMenu3.container.style ? myMenu3.container.style.left = newLeft + "px" : myMenu3.container.left = newLeft;
	}

function repositionMenu4() {
	var newLeft = getWindowWidth() / 2 + myOffset4;
	myMenu4.container.style ? myMenu4.container.style.left = newLeft + "px" : myMenu4.container.left = newLeft;
	}
		
function repositionMenu5() {
	var newLeft = getWindowWidth() / 2 + myOffset5;
	myMenu5.container.style ? myMenu5.container.style.left = newLeft + "px" : myMenu5.container.left = newLeft;
	}
		 
function getWindowWidth() {return window.innerWidth ? window.innerWidth : document.body.offsetWidth;}


/* Submenu de productos */

function open_subnav1(id) {
	document.getElementById('menu1_1').style.display="none";
	document.getElementById('menu2_1').style.display="none";
	document.getElementById('menu3_1').style.display="none";
	//document.getElementById('menu4_1').style.display="none";

	document.getElementById(id).style.display="block";
}
function open_subnav2(id) {
	document.getElementById('menu1_1_1').style.display="none";
	document.getElementById('menu1_1_3').style.display="none";

	document.getElementById(id).style.display="block";
}

