// Veromia dynamic site effects and actions
// (c) 2007 Loco (Loohuis Consulting), http://www.loohuis-consulting.nl/

// show big image
function showImage(e)
{
    $('realbigimg').src = $('bigimg').src;
    $('showbigimg').show();
}

// hide big image
function hideImage(e)
{
    $('showbigimg').hide();
}

// initialise page
function init()
{
    // set handlers for image view events
    if ($('showbigimg')) {
        if ($('showbig'))
            Event.observe('showbig', 'click', showImage);
        Event.observe('closebig', 'click', hideImage);
    }
}

Event.observe(window, 'load', init);
