$(document).ready(function () {

    //InLine Images Zoom
    $("a[rel^='lightbox']").prettyPhoto();

    //Relacja 'New Window'
    $("a[rel^='newWnd']").click(function () {
        window.open($(this).attr('href')); 
        return false;
    });
}); 
