$(document).ready(function() {
    //dopasowanie wyniarów a
    var awidth  = parseInt($("img.photoarticleSmall").attr("width"));
    var aheight = parseInt($("img.photoarticleSmall").attr("height"));
    $("#fotkaBig").width(awidth).height(aheight);
    $("#photoarticle").width(awidth).height(aheight);

    //powiekszanie fotki:
    $(".photoarticleSmall").click(function() {
        var src = $(this).attr("src").replace("small.jpg", "article.jpg");
        $("img.photoarticleSmall").hide('fast');
        $("<img></img>").load(function() {
            var width = parseInt($(this).attr("width"));
            var height = parseInt($(this).attr("height"));
            $("#fotkaBig").append($(this));
            $("#fotkaBig img").addClass("rogi");
            $("#leadArtykul").children().show('fast');
        }).attr("src", src);

        return false;
    });

    $("#fotkaBig").click(function() {
        $("img.photoarticleSmall").show('fast');
        $(this).hide('fast');
        $("#fotkaBig img").remove();
    });
    
});