window.addEvent('domready', function() {

    $$('#newsletter_sendbtn').addEvents({
        'click': function() {
            $('newsletter').submit();
        }
    });

    $$('.pobierzrss').addEvents({
        'click': function() {
            document.location = $(this).getChildren()[0].get('href');
        }
    });

    $$('.planlista').addEvents({
        'click': function() {
            document.location = $(this).getChildren()[0].get('href');
        }
    });

    $$('.dopiszsie').addEvents({
        'click': function() {
            document.location = $(this).getChildren()[0].get('href');
        }
    });

    $$('.gallerycat_name').addEvents({
        'click': function() {
            document.location = $(this).getChildren()[0].get('href');
        }
    });
});

