//<!--

//window.heidi = (window.heidi == undefined) ? {} : window.heidi;

function toggleLightBox(aEl)
{

    if ($('lightBox').visible())
    {
        new Effect.SlideUp
        (
            'lightBox',
            {
                duration: .3
            }
        );
        
        aEl.update('show&nbsp;&uarr;');
    }
    else
    {
        new Effect.SlideDown
        (
            'lightBox',
            {
                duration:.3
            }
        );
        
        aEl.update('hide&nbsp;&darr;');
    }

}


// -->

