
$().ready(function(){
	$('BODY').removeClass('noJs').addClass('jsEnabled');
	
	$('.button-enter, A#incube, #nav-language LI A').append('<span class="hover"></span>');
	$('SPAN.hover').animate({'opacity':0},0).show().hover(
		function(){$(this).animate({'opacity':1},500);},
		function(){$(this).animate({'opacity':0},500);}
	);
	
	
});