jQuery(document).ready(fadde);
function fadde(){
	jQuery(".lamp2").fadeIn(700,function(){		
		jQuery(".lamp1").fadeIn(700, function(){
			jQuery(".lamp3").fadeIn(700, function(){
				jQuery(".lamp2").fadeOut(700);
				jQuery(".lamp4").fadeIn(700,function(){
					jQuery(".lamp3").fadeOut(700);
					jQuery(".lamp4").fadeOut(700,fadde)
				});
			});
		});
	});
}

$(function() {
	$("#zavesa")
		.click(function () {
					$("#dialog-modal").dialog({
						width: 800,
						height: 600,
						modal: true,
						show: "blind"
					});
		 });
});
