function ShowBigPhoto(id) {
    if (id != "") {
        var small_photo = document.getElementById(id).src;

        var small2 = document.getElementById(id).src.replace("/page/galeria/",'/page/galeria/duze/');

        $("#big_photo_inner").css("display","none");
        $("#big_photo_inner").fadeIn(2000);
        $("#big_photo_inner").html("<img src='"+small2+"'/>");

    }
}
