document.observe('dom:loaded',function()
{
    $$('a.openbig').each(function(a)
    {
        a.observe('mouseover', function()
        {
            var href = a.readAttribute('href');
            $('image').writeAttribute('src', href);
        });
        a.onclick = function()
        {
            return false;
        };
    });
});

