/*
 * Copyright (c) 2009 Michael Pratt
 * Licensed under GPL3.0 (http://opensource.org)
 */
$(function(){
	animatedcollapse.addDiv('games_txt', 'fade=1,hide=1');
	animatedcollapse.addDiv('web_txt', 'fade=1,hide=1');
	animatedcollapse.addDiv('anim_txt', 'fade=1,hide=1');
	animatedcollapse.addDiv('other_txt', 'fade=1,hide=1');
	
	animatedcollapse.init();
	
	$("#games").hover(function(){animatedcollapse.show("games_txt")}, function(){animatedcollapse.hide("games_txt")});
	$("#web").hover(function(){animatedcollapse.show("web_txt")}, function(){animatedcollapse.hide("web_txt")});
	$("#anim").hover(function(){animatedcollapse.show("anim_txt")}, function(){animatedcollapse.hide("anim_txt")});
	$("#other").hover(function(){animatedcollapse.show("other_txt")}, function(){animatedcollapse.hide("other_txt")});
	
});