﻿
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);


jQuery(document).ready(function () {

    var hedefDiv = "#divFotoGaleri",
        topNKayit = 4;

    if (sPage == "HaberFotoGaleri.aspx") {
        hedefDiv = "#divFotoGaleriTum";
        topNKayit = 24;
        jQuery("#divFotoGaleri").css("display", "none");
    }

    var f = function () {
        var img = "";

        jQuery.ajax({
            type: "POST",
            url: "Handlers/FotoGaleri.ashx?TOPN=" + topNKayit,
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (a) {
                var jsonDizi = a.Veriler;
                if (!jsonDizi || jsonDizi.length == 0) return;
                for (var i = 0; i < jsonDizi.length; ++i) {
                    var obj = jsonDizi[i];
                    if (!obj) return;
                    img += "<div class='divFGC'><div class='dprfl'><a href='HaberFotoGaleri.aspx?GID=" + obj.FotoID + "'><img alt='' src='UserFiles/" + obj.FotoResim + "' /></a></div><a href='HaberFotoGaleri.aspx?GID=" + obj.FotoID + "'>" + obj.FotoBaslik + "</a></div>";
                }
                jQuery(hedefDiv).html(img);
            },
            error: function () {
                jQuery(hedefDiv).html("");
            }
        });
    };

    f();

});

