$(document).ready(function() {

  $('.slideshow').cycle({
		  fx: 'fade' 
	     });

  $("p.pozor").delay(4000).animate(
        {
          fontSize: "12px"
        }, 500, function() {
          // optional callback after animation completes
      }
      );
    });
