function showimage2() 
{ 
	if(document.all) 
	{
		if (i_strngth2 <=110) 
		{			
			testimage2.innerHTML="<img width='300' height='225' style='filter:alpha(opacity="+i_strngth2+")' src="+imageurl2[i_image2]+" border=0>";i_strngth2=i_strngth2+10
			var timer=setTimeout("showimage2()",1)
		}       
		else 
		{
			clearTimeout(timer)
			var timer=setTimeout("hideimage2()",1000)
		}
	}       
	if(document.layers) 
	{
		clearTimeout(timer)
		document.testimage2.document.write("<img width='300' height='225' src="+imageurl2[i_image2]+" border=0 >")
		document.close()
		i_image2++
		if (i_image2 >= imageurl2.length) 
		{
			i_image2=0
		}     
		var timer=setTimeout("showimage2()",20000)
	 }
}

function hideimage2() 
{
	if (i_strngth2 >=-10) 
	{
		testimage2.innerHTML="<img width='300' height='225' style='filter:alpha(opacity="+i_strngth2+")'src="+imageurl2[i_image2]+" border=0>";
		i_strngth2=i_strngth2-10
		var timer=setTimeout("hideimage2()",80)
	}       
	else 
	{
		clearTimeout(timer)
		i_image2++
		if (i_image2 >= imageurl2.length) 
		{
			i_image2=0
		}
		i_strngth2=1
		var timer=setTimeout("showimage2()",10) 
	}
}