$(document).ready(function(){
	Tam = TamVentana();
	 document.getElementById('marcoFrame').style.height = (Tam[1]-210) + 'px';

	$("#menu > ul > .desplegable").hover(
		   function() {//Al poner encima
			   $(this).children('div').slideDown("600");
			   $(this).css('color', 'white');
			   $(this).css('background-color', '#0f4b4b');
		   },  
		   function() {$(this).children('div').slideUp("300", 
			   		function () {
			   					$(this).parent().css('color', 'black');
			   					$(this).parent().css('background-color', '#d5d5a9');
			   					});
		   } //Al quitar
	);
	
	$("#menu > ul > .normal").hover(
			   function() {//Al poner encima
				   $(this).children('div').slideDown("600");
				   $(this).find('a').css('color', 'white');
				   $(this).css('background-color', '#0f4b4b');
			   },  
			   function() {
				   	$(this).find('a').css('color', 'black');
				   	$(this).css('background-color', '#d5d5a9');
				   				
			   } //Al quitar
		);
	
//	$("#contacto").css("opacity", "0.4");
//	$("#contacto").hover(
	//		function() {$(this).fadeTo('fast', 1);}, //Al poner encima
		//	function() {$(this).fadeTo('fast', 0.4);} //Al salir
			//);
	
});



function TamVentana() {
	  var Tamanyo = [0, 0];
	  if (typeof window.innerWidth != 'undefined')
	  {
	    Tamanyo = [
	        window.innerWidth,
	        window.innerHeight
	    ];
	  }
	  else if (typeof document.documentElement != 'undefined'
	      && typeof document.documentElement.clientWidth !=
	      'undefined' && document.documentElement.clientWidth != 0)
	  {
	 Tamanyo = [
	        document.documentElement.clientWidth,
	        document.documentElement.clientHeight
	    ];
	  }
	  else   {
	    Tamanyo = [
	        document.getElementsByTagName('body')[0].clientWidth,
	        document.getElementsByTagName('body')[0].clientHeight
	    ];
	  }
	  return Tamanyo;
}


window.onresize = function() {
  var Tam = TamVentana();
  document.getElementById('marcoFrame').style.height = (Tam[1]-210) + 'px';
};

function mostrarEnvio() {
	var html = '<li><a href="frame.php?pagina=articulo&amp;ver=6" target="frame">Normas del Env&iacute;o</a></li>';
	html += '<li><a href="frame.php?pagina=articulo&amp;ver=7" target="frame">Plazos de Presentaci&oacute;n</a></li>';
    html += '<li><a href="frame.php?pagina=usuariospresentacion" target="frame">Enviar comunicaci&oacute;n</a></li>';
  	document.getElementById("menuComunicaciones").innerHTML = html;
}

function ocultarEnvio() {
	var html = '<li><a href="frame.php?pagina=articulo&amp;ver=6" target="frame">Normas del Env&iacute;o</a></li>';
	html += '<li><a href="frame.php?pagina=articulo&amp;ver=7" target="frame">Plazos de Presentaci&oacute;n</a></li>';
  	document.getElementById("menuComunicaciones").innerHTML = html;
}
