/* Caduceus JS Document */

$(document).ready(function(){

	$("#sliders>*").show();
	
	$(this).delay(0,function(){
		$(".cadu_text").stop().animate({top:'50px'}, {queue:false, duration:2000, easing: 'easeInOutCubic'});
		$(".logobar_frontpg").stop().animate({top:'-52px'}, {queue:false, duration:2000, easing: 'easeInOutCubic'});
    });

	$(this).delay(1000,function(){
		$("#navigation").fadeIn(1000);
	});
	$("#navigation").fadeOut(0);

});