// JavaScript Document
	var speedlich = 2500;
	var crossFadeDurationlich = 1;
	var lichmoi = new Array();
	lichmoi[0] = one;
	lichmoi[1] = two;
	lichmoi[2] = three;
	lichmoi[3] = four;
	var blich = lichmoi.length;
	var dplich = new Array();
	
	for (j = 0; j < blich; j++) 
	{
		dplich[j] = new Image();
		dplich[j].src = lichmoi[j];
	}
	
	dilich = 0;
	loailich = 1;
	
	function fsp() 
	{
		if(document.images.lichmoi)
		{
			if (document.all) 
			{
				document.images.lichmoi.style.filter="revealTrans(duration=0)";
				document.images.lichmoi.style.filter="revealTrans(transition = loailich)";
				document.images.lichmoi.filters.revealTrans.apply();
			}
			document.images.lichmoi.src = dplich[dilich].src;
			if (document.all) 
				document.images.lichmoi.filters.revealTrans.Play();
			
			dilich++;
			if (dilich > (blich - 1)) 
				dilich = 0;	
			loailich++;
			if (loailich > 22 ) 
				loailich = 0;
			
			setTimeout('fsp()', speedlich);
		}
	}
	document.load=fsp();