﻿$(document).ready(function() {
    var options = {
        zoomWidth: 301,
        zoomHeight: 143,
        xOffset: 9,
        yOffset: -78,
        lens: true,
        preloadText: 'Wczytywanie',
        position: "right"
    };
    var options2 = {
        zoomWidth: 301,
        zoomHeight: 132,
        xOffset: 0,
        yOffset: 0,
        lens: true,
        preloadText: 'Wczytywanie',
        position: "right"
    };
    $('.jqzoom').jqzoom(options);
    $('.jqzoom2').jqzoom(options2);

    $('.cl_sm').click(function() {
        $("#p1").attr("href", String(this.src).replace("_resize", ""));
        $("#ip1").attr("src", this.src);
    })
}); 
