diff --git a/game/modules/tome/data/birth/classes/divine.lua b/game/modules/tome/data/birth/classes/divine.lua
index 971566c4dbf5bf31c30ad38efbaf2cf50f397b37..b3686083cd4b757783a1d00e6bc92aa8809c195c 100644
--- a/game/modules/tome/data/birth/classes/divine.lua
+++ b/game/modules/tome/data/birth/classes/divine.lua
@@ -92,7 +92,7 @@ newBirthDescriptor{
 		["cunning/survival"]={false, 0.1},
 		["divine/sun"]={true, 0.3},
 		["divine/chants"]={true, 0.3},
-		["divine/glyphs"]={true, 0.3},
+		["divine/glyphs"]={false, 0.3},
 		["divine/light"]={false, 0.3},
 		["divine/twilight"]={true, 0.3},
 		["divine/hymns"]={true, 0.3},
diff --git a/game/modules/tome/data/talents/misc/misc.lua b/game/modules/tome/data/talents/misc/misc.lua
index 2244cc4d06fe416a4e4916e9c055248a65772247..bddc52a84250a6d339f7225d7e47a5021c24bec3 100644
--- a/game/modules/tome/data/talents/misc/misc.lua
+++ b/game/modules/tome/data/talents/misc/misc.lua
@@ -17,12 +17,14 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
--- Load other misc things
-load("/data/talents/misc/npcs.lua")
-
 -- race & classes
 newTalentType{ type="base/class", name = "class", hide = true, description = "The basic talents defining a class." }
 newTalentType{ type="base/race", name = "race", hide = true, description = "The various racial bonuses a character can have." }
+newTalentType{ type="rituals/rituals", name = "rituals", hide = true, description = "Rituals are not class abilities, you must find them or learn them from other people." }
+
+-- Load other misc things
+load("/data/talents/misc/npcs.lua")
+load("/data/talents/misc/rituals.lua")
 
 newTalent{
 	name = "Mana Pool",
diff --git a/game/modules/tome/data/talents/misc/rituals.lua b/game/modules/tome/data/talents/misc/rituals.lua
new file mode 100644
index 0000000000000000000000000000000000000000..59187cd7e3bd23088a291edec29c2262036cfb0f
--- /dev/null
+++ b/game/modules/tome/data/talents/misc/rituals.lua
@@ -0,0 +1,40 @@
+-- ToME - Tales of Middle-Earth
+-- Copyright (C) 2009, 2010 Nicolas Casalini
+--
+-- This program is free software: you can redistribute it and/or modify
+-- it under the terms of the GNU General Public License as published by
+-- the Free Software Foundation, either version 3 of the License, or
+-- (at your option) any later version.
+--
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-- GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License
+-- along with this program.  If not, see <http://www.gnu.org/licenses/>.
+--
+-- Nicolas Casalini "DarkGod"
+-- darkgod@te4.org
+
+newTalent{
+	name = "Rituals Capacity",
+	type = {"rituals/rituals", 1},
+	points = 5
+	mode = "passive",
+	info = function(self, t)
+		return ([[Allows you to learn up to %d rituals.]]):
+		format(1.7 * math.ceil(self:getTalentLevel(t)))
+	end,
+}
+
+newTalent{
+	name = "Rituals Study",
+	type = {"rituals/rituals", 1},
+	points = 5
+	mode = "passive",
+	info = function(self, t)
+		return ([[Allows you to learn rituals of level %d at most.]]):
+		format(math.ceil(self:getTalentLevelRaw(t))
+	end,
+}
diff --git a/game/modules/tome/data/talents/spells/arcane.lua b/game/modules/tome/data/talents/spells/arcane.lua
index 58df8103d4b616483a85effee25c59342c36cf17..81d40a22e649d42628d810bd180b69ba4cc16f91 100644
--- a/game/modules/tome/data/talents/spells/arcane.lua
+++ b/game/modules/tome/data/talents/spells/arcane.lua
@@ -24,6 +24,7 @@ newTalent{
 	require = spells_req1,
 	sustain_mana = 50,
 	points = 5,
+	cooldown = 30,
 	activate = function(self, t)
 		local power = 5 * self:getTalentLevelRaw(t)
 		game:playSoundNear(self, "talents/arcane")
diff --git a/ideas/classes.ods b/ideas/classes.ods
index 147eca71caf4ed2bd55dee5954236e055a3d9c63..9e23ffb5a46fdd00f58b5f7d22828b51e8d52a5f 100644
Binary files a/ideas/classes.ods and b/ideas/classes.ods differ
diff --git a/src/main.c b/src/main.c
index 03ab30b7fde80597cb8f50949969ac77e6e37c02..08f5017cd083e45b59cc80f937100fd3b779b66f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -566,7 +566,7 @@ int main(int argc, char *argv[])
 	SDL_WM_SetIcon(IMG_Load_RW(PHYSFSRWOPS_openRead("/data/gfx/te4-icon.png"), TRUE), NULL);
 
 //	screen = SDL_SetVideoMode(WIDTH, HEIGHT, 32, SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE | SDL_RESIZABLE);
-	glewInit();
+//	glewInit();
 	do_resize(WIDTH, HEIGHT, FALSE);
 	if (screen==NULL) {
 		printf("error opening screen: %s\n", SDL_GetError());