jQuery(document).ready(function(){


		jQuery("div#uvod-vpravo-banner2").fadeOut('fast');
    var int = setTimeout(function() {
    	prepniNaDruhou();
    }, 4000);


	function prepniNaPrvni() { 
		jQuery("div#uvod-vpravo-banner2").fadeOut('slow');
		int = setTimeout(function() {
	    	prepniNaDruhou();
	    }, 4000);
	};
	function prepniNaDruhou() { 
		jQuery("div#uvod-vpravo-banner2").fadeIn('slow');
		int = setTimeout(function() {
			prepniNaPrvni();
	    }, 4000);
	};

	});

