			function mostrardiv() 
			{
				div = document.getElementById('cantidadEspinas');
				div.style.display = '';
				div = document.getElementById('archivoNoticias');
				div.style.display = '';
			}
			function cerrardiv() {
				div = document.getElementById('seleccionimagen');
				div.style.display='none';
				div = document.getElementById('archivoNoticias');
				div.style.display='none';
			}
			//Para el menú de la galería de "X por página"
			function IEHoverPseudo() {

				var navItems = document.getElementById("primary-nav").getElementsByTagName("li");
				
				for (var i=0; i<navItems.length; i++) {
					if(navItems[i].className == "menuparent") {
						navItems[i].onmouseover=function() { this.className += " over"; }
						navItems[i].onmouseout=function() { this.className = "menuparent"; }
					}
				}

			}
			window.onload = IEHoverPseudo;