﻿var FaceToogleTimeOut=null;

function FaceInToogle(id)
{
    mggelement(id).style['display']=display.on;
    var opa=parseFloat(mggelement(id).style['opacity']);
    if(opa>=0.8)
    {       
       FaceToogleTimeOut=null; 
       clearTimeout();      
       return; 
    }
    mggelement(id).style['opacity']=opa+0.1;
    if(isIE)
    {
        var ieOpa=opa*100 + 10;
        mggelement(id).style['filter']='alpha(opacity='+ieOpa+')';
    }
    
    FaceToogleTimeOut=setTimeout('FaceInToogle("'+id+'")',10);
}

function FaceOutToogle(id)
{      
    var opa=parseFloat(mggelement(id).style['opacity']);   
    if(opa<=0)
    {       
       FaceToogleTimeOut=null; 
       clearTimeout();     
       mggelement(id).style['display']=display.off;
       return; 
    }
    mggelement(id).style['opacity']=opa-0.1;
    if(isIE)
    {
        var ieOpa=opa*100 - 10;
        mggelement(id).style['filter']='alpha(opacity='+ieOpa+')';
    }    
    FaceToogleTimeOut=setTimeout('FaceOutToogle("'+id+'")',10);   
}


