$(function() {
	
	Cufon.replace('#langbar a, #left #menu li a, h1, h2, #footer, #right_menu li a, #tagcloud li a' , { fontFamily: 'Lucida Sans' } );

	$('#langbar span:last').css({'border' : 'none'});
	
	Shadowbox.init();
	
	 $('#de_images').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	

	$('#left #menu a, #right_menu a').hover(function() {
		bg = $(this).css('background-color');
		txt = $(this).css('color');
		$(this).css({ "color": bg , "background-color": txt});
		over = true;
	},function() {
		if(over) {
			bg = $(this).css('background-color');
			txt = $(this).css('color');
			$(this).css({ "color": bg , "background-color": txt});
			over = false;
		}
	});

	
});
