jQuery(document).ready(function(){
    
    // init
	jQuery('#logo').css('margin-top',100);
	jQuery('#logo').fadeOut();
	
	// start Anim. Logo
	jQuery('#logo').delay(200).animate({'margin-top':0});
	jQuery('#logo').delay(800).fadeIn('slow');
      
    
});
