var ImgIdx = 1;//To mark which image will be select next
	var ListEffect = [	["", "", "", "", ""],
						["ScrollIn", "ScrollIn", "ScrollIn", "ScrollIn", "ScrollIn"],
						["TopDown", "LeftRight", "DownTop", "LeftRight", "DownTop"]];
	function PreloadImg(){
		$.ImagePreload("http://max-dent.cz/images/ad/img_1.png");
		$.ImagePreload("http://max-dent.cz/images/ad/img_2.png");
		$.ImagePreload("http://max-dent.cz/images/ad/img_3.png");
		$.ImagePreload("http://max-dent.cz/images/ad/img_4.png");
		$.ImagePreload("http://max-dent.cz/images/ad/img_5.png");
		
	}
	
	
	var StartAds = function(){
		$("#parser").animate({"top": "-20px"},5500,function(){
			if(!$("#bannery").ImageAnimating()){
				$("#bannery").ImageSwitch({	Type:ListEffect[1][ImgIdx], 
										NewImage:"http://max-dent.cz/images/ad/img_"+(ImgIdx+1)+".png",
										Direction: ListEffect[2][ImgIdx],
										StartOpacity: 1,
										EndOpacity: 1,
										Speed: 1500
										},function(){
											$("#parser").html(ListEffect[0][ImgIdx]);
											$("#parser").animate({"top": "0px"},2500);
											ImgIdx++;
											if(ImgIdx>4) ImgIdx = 0;												
										});												
			}
		});
	}		
	
	$(document).ready(function(){
		PreloadImg();
		setInterval(StartAds,3000);
	});
