		function mainmenu(){
		// Oculto los submenus
		$(" #nav ul ").css({display: "none"});
		// Defino que submenus deben estar visibles cuando se pasa el mouse por encima
		$(" #nav li").hover(function(){
			 $(this).find('ul:first:hidden').css({visibility: "visible",display: "none"}).slideDown(400);
			 },function(){
				  $(this).find('ul:first').slideUp(400);
			 });
		}
		
		function mostrarImagen(imagen,nombre,id){
			$(document.getElementById('form_mas_info')).slideUp();		

			aux_img = new Image();
			aux_img.src = 'img/productos/gra/'+imagen;			
			
			document.getElementById('contenido_web').style.background ='url(img/productos/gra/'+imagen+')';
			document.getElementById('titulo_producto').innerHTML = nombre;			
			document.getElementById('tit_prod').innerHTML = nombre;						
			document.getElementById('contenido_form_info').className='';
			document.getElementById('msj_ok_info').className='noMostrar';			
			document.mas_info.id.value = id;

		   
			
		}
		
		function mostrarImagenProyectos(imagen){
			document.getElementById('contenido_web').style.background ='url(img/proyectos/gra/'+imagen+')';
			$(document.getElementById('form_mas_info2')).slideUp();						
		}		
