/**
 * Toggle Map
 * Toggles the visibility of the world map in the Trufflepig Header
 */

window.addEvent('domready', function() 
{

    var status = 
    {
        'true':'Hide World Map',
        'false':'Expand World Map'
    }
    
    var slide = new Fx.Slide('select');
    $('toggle').addEvent('click', function(e){e.stop();slide.toggle()});

    slide.addEvent('complete', function() {$('toggle').set('html', status[slide.open])});

    if (headerVisible == false)
    {
        slide.hide(); //To immediately hide
        //slide.slideOut(); //To slide to hidden position
    }
});