
$(document).ready(function(){
    // jQuery.prettyPhoto
    $("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook'});

    // Otwarcie odnosnika w nowym oknie
    $('a[rel="external"]').live('click',function() {
        $(this).attr('target','_blank');
    });
});

