$.fn.pause = function(duration) {
    $(this).animate({ dummy: 1 }, duration);
    return this;
};

$(document).ready(function() {
   $(".container_logotype").fadeIn(1000);
   $(".container_capricorn").pause(500).fadeIn("slow");
   $(".container_manufaktur").pause(1000).fadeIn("slow");
   $(".container_stupenda").pause(1500).fadeIn("slow");
   $(".container_mainnav").pause(1800).fadeIn("slow");
   $(".container_navigation").pause(500).fadeIn("slow");
   $(".container_maincontent").pause(800).fadeIn("slow");
 });
