function applyPrettyPhotoToRelevantLinks() {
    var items = $("a[rel^='prettyPhoto']");
    if (items.length > 0) {
        items.prettyPhoto({
        theme: 'dark_rounded',
        overlay_gallery: false
        });
    }
}

