// JavaScript Document
var i = 0
var j = 0
var k = 0
var inc_w=0.0
var inc_h=0.0
var width
var height
var i2 = 0
var j2 = 0
var k2 = 0
var inc_w2=0.0
var inc_h2=0.0
var width2
var height2
function animate()
{
   	if (navigator.appName == "Netscape")
   	    return true
	
    if (k==0)
	{
	width = document.objet.width
	height = document.objet.height
	inc_w = width/25
	inc_h = height/25
	}
	k=k+4
	i=i+inc_w
	j= j+inc_h
    document.objet.width = i
	document.objet.height = j
	
	   document.objet.filters.alpha.opacity = k
	if (i < width) {
		setTimeout(animate,100)
	}
}
function animate2()
{
    if (navigator.appName = "Netscape")
   	    return true
    if (k2==0)
	{
	width2 = document.objet2.width
	height2 = document.objet2.height
	inc_w2 = width2/25
	inc_h2 = height2/25
	}
	k2=k2+4
	i2=i2+inc_w2
	j2= j2+inc_h2
    document.objet2.width = i2
	document.objet2.height = j2
	document.objet2.filters.alpha.opacity = k2
	if (i2 < width2) {
		setTimeout(animate2,100)
	}
}