window.addEvent('domready', function(){
		
	$('geb').addEvents({
		'mouseenter': function(){
			show("gm", "gm-hell");
		},
		'mouseleave': function(){
			show("gm-hell", "gm");
		}
	});
	
	$('work').addEvents({
		'mouseenter': function(){
			show("wk", "wk-hell");	
		},
		'mouseleave': function(){
			show("wk-hell", "wk");
		}
	});

	$("gm-hell").fx = $("gm-hell").effect('opacity', {duration: 0}).start(0);
	$("wk-hell").fx = $("wk-hell").effect('opacity', {duration: 0}).start(0);	
});

function show(alt, neu){
	tDiv = alt;
	vDiv = neu;
	
	
	if($(tDiv).fx){$(tDiv).fx.stop();}
	if($(vDiv).fx){$(vDiv).fx.stop();}
	$(tDiv).fx = $(tDiv).effect('opacity', {duration: 300}).start(0);
	$(vDiv).fx = $(vDiv).effect('opacity', {duration: 300}).start(1);	
}