
	function menuseleccionado(opcion)
	{
		
		switch(opcion)
		{
			case 'menuRestaurante':
			document.getElementById(opcion).style.background="url(imagenes/bot_restaurante.png) no-repeat bottom left";
			break
			case 'menuBodas':
			document.getElementById(opcion).style.background="url(imagenes/bot_bodas.png) no-repeat bottom left";
			break
			case 'menuBautizos':
			document.getElementById(opcion).style.background="url(imagenes/bot_bautizos.png) no-repeat bottom left";
			break
			case 'menuGrupos':
			document.getElementById(opcion).style.background="url(imagenes/bot_grupos.png) no-repeat bottom left";
			break
			case 'menuEventos':
			document.getElementById(opcion).style.background="url(imagenes/bot_eventos.png) no-repeat bottom left";
			break
			case 'menuEspecial':
			document.getElementById(opcion).style.background="url(imagenes/bot_espec.png) no-repeat bottom left";
			break
			case 'menuGaleria':
			document.getElementById(opcion).style.background="url(imagenes/bot_galeria.png) no-repeat bottom left";
			break
			case 'menuReservas':
			document.getElementById(opcion).style.background="url(imagenes/bot_reservas.png) no-repeat bottom left";
			break
		}
			
		
		
		
	}

