$(document).ready(function () {

	$('#CustomSlideshow').slideshow({
		width:450,
		height:280,
		time:5000,
		effecttime:3000,
		title:false,
		panel:false,
		effect:'fade',
		imgajax:true,
		loadframe:true,
		imgresize:false,
		playframe:false
	}).playSlide();	
	
	var top1 = document.getElementById('top_layer1');
	var top2 = document.getElementById('top_layer2');
	var top3 = document.getElementById('top_layer3');
	var top4 = document.getElementById('top_layer4');
	
	if(top1 || top2){var wys2='450px';}else{wys2='200px';}
	if(top3 || top4){var wys1='130px';}else{wys1='200px';}
	
	if(top1 && top2){
		$('#top_layer1').fadeIn(500).animate({"left" : "-215px","top":wys1}, 350);
		$('#top_layer2').fadeIn(500).animate({"left" : "+215px","top":wys1}, 450);
	}
	else{
		$('#top_layer1').fadeIn(500).animate({"top":wys1}, 350);
		$('#top_layer2').fadeIn(500).animate({"top":wys1}, 450);
	}
	
	if(top3 && top4){
		$('#top_layer3').fadeIn(500).animate({"left" : "-215px","top":wys2}, 550);
		$('#top_layer4').fadeIn(500).animate({"left" : "+215px","top":wys2}, 650);
	}
	else{
		$('#top_layer3').fadeIn(500).animate({"top":wys2}, 550);
		$('#top_layer4').fadeIn(500).animate({"top":wys2}, 650);
	}
	
	$('#zamknij1').click(function(){$('#top_layer1').fadeOut(500);});
	$('#zamknij2').click(function(){$('#top_layer2').fadeOut(500);});
	$('#zamknij3').click(function(){$('#top_layer3').fadeOut(500);});
	$('#zamknij4').click(function(){$('#top_layer4').fadeOut(500);});
	
});

function pokaz(j) {
	$('#motto table:visible').fadeOut(200,function() {
		$('#motto table').eq(j).fadeIn(200);
	});
	if (++j >= $('#motto table').length){j=0};
	setTimeout('pokaz(' + j + ')',4000);	
}

$(function() { $('#motto table:first').show(); setTimeout('pokaz(0)',4000); });
