// ---------------------------- begin: cycle banner HPvar tajm = 5000;function rotace(){	var pocet = $(".title img").length;	var active_slide = $(".title img").index($(".title img.on")); // zjistím pořadí active big// alert (pocet);			next_slide = active_slide + 1; // přičtu 1 k aktivnímu prvku			if (next_slide >= pocet){ next_slide = 0;} // ověřím není li větší než počet prvků ve skupině	$('.title img').eq(active_slide).fadeOut(1000).removeClass("on");	$('.title img').eq(next_slide).delay(40).fadeIn(1000).addClass("on");}// ---------------------------- end: cycle banner HP// casovac = setInterval(rotace, tajm); // spustim timer
