 function imageSwapl(tema){
		
			setTimeout('doimageSwapl('+tema+', '+0+', '+1+')', 6000);
				
		}
		
		function doimageSwapl(tema, op1, op2){
			//window.alert(tema+' '+op1+' '+op2);
			
			if (tema == 5){
				tema = 1;
			}
			
			temb = (tema+1);
			if (temb == 5){
				temb = 1;
			}
			
			op1 = op1 + 0.05;
			op2 = op2 - 0.05;
			
			//if (op1 >= 100) return;
			if ((op2 <= 0) || (op1 >= 1)){
				
				if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4){
					op1ie = (op1*100);
					op2ie = (op2*100);
					
					document.getElementById('scroll'+tema).style.filter='alpha(opacity=' + 0 + ')';
					document.getElementById('scroll'+temb).style.filter='alpha(opacity=' + 100 + ')';
				}else{
					document.getElementById('scroll'+tema).style.opacity=0;
					document.getElementById('scroll'+temb).style.opacity=1;
				}			
				
				//window.alert(temb+' '+op1+' '+op2);
				imageSwapl(temb);
				return;
			}
			
			if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4){
				op1ie = (op1*100);
				op2ie = (op2*100);
				
				//window.alert(op1ie+' '+op2ie+' '+(tema+1))
				document.getElementById('scroll'+tema).style.filter='alpha(opacity=' + op2ie + ')';
				document.getElementById('scroll'+temb).style.filter='alpha(opacity=' + op1ie + ')';
			}else{
				document.getElementById('scroll'+tema).style.opacity=op2;
				document.getElementById('scroll'+temb).style.opacity=op1;
			}
			
			setTimeout('doimageSwapl('+tema+', '+op1+', '+op2+')', 100)
		}
		
		
		
		
		
function angelSwapl(tema){
		
			setTimeout('doangelSwapl('+tema+', '+0+', '+1+')', 6000);
				
		}
		
		function doangelSwapl(tema, op1, op2){
			//window.alert(tema+' '+op1+' '+op2);
			
			if (tema == 16){
				tema = 1;
			}
			
			temb = (tema+1);
			if (temb == 16){
				temb = 1;
			}
			
			op1 = op1 + 0.05;
			op2 = op2 - 0.05;
			
			//if (op1 >= 100) return;
			if ((op2 <= 0) || (op1 >= 1)){
				
				if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4){
					op1ie = (op1*100);
					op2ie = (op2*100);
					
					document.getElementById('angel'+tema).style.filter='alpha(opacity=' + 0 + ')';
					document.getElementById('angel'+temb).style.filter='alpha(opacity=' + 100 + ')';
				}else{
					document.getElementById('angel'+tema).style.opacity=0;
					document.getElementById('angel'+temb).style.opacity=1;
				}			
				
				//window.alert(temb+' '+op1+' '+op2);
				angelSwapl(temb);
				return;
			}
			
			if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4){
				op1ie = (op1*100);
				op2ie = (op2*100);
				
				//window.alert(op1ie+' '+op2ie+' '+(tema+1))
				document.getElementById('angel'+tema).style.filter='alpha(opacity=' + op2ie + ')';
				document.getElementById('angel'+temb).style.filter='alpha(opacity=' + op1ie + ')';
			}else{
				document.getElementById('angel'+tema).style.opacity=op2;
				document.getElementById('angel'+temb).style.opacity=op1;
			}
			
			setTimeout('doangelSwapl('+tema+', '+op1+', '+op2+')', 100)
		}		
	  
