
function posicion_x(){
  var x=0;
  if (document.all) {
	x=document.body.clientWidth;
  }
  if (document.layers) {
	x=window.innerWidth;
  }
  if ((!document.all) && document.getElementById) {
	x=window.innerWidth;
  }
  y=((x-728)/2)+8;
  
  return y;
}//posicion_x

function mover(posi){
	var texto=(posi-27)+"px"; 
	if (document.all) menu1Container.style.left=texto; 
	else document.getElementById("menu1Container").style.left=texto;
}//arrancar

function mover2(posi2){
	var texto2=(posi2+70)+"px";	
	if (document.all) menu2Container.style.left=texto2; 
	else document.getElementById("menu2Container").style.left=texto2;
}//arrancar

new ypSlideOutMenu("menu1", "down", 0, -90, 170, 150 );
new ypSlideOutMenu("menu2", "down", 85, -90, 170, 150 );

