﻿
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);


jQuery(document).ready(function () {

    var hedefDiv = "#divVideoGaleri",
        topNKayit = 4;

    if (sPage == "HaberVideoGaleri.aspx") {
        hedefDiv = "#divVideoGaleriTum";
        topNKayit = 24;
        jQuery("#divVideoGaleri").css("display", "none");
    }

    var f = function () {
        var img = "";

        jQuery.ajax({
            type: "POST",
            url: "Handlers/VideoGaleri.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='HaberVideoGaleri.aspx?GID=" + obj.VideoID + "'><img alt='' src='UserFiles/" + obj.VideoResim + "' /></a></div><a href='HaberVideoGaleri.aspx?GID=" + obj.VideoID + "'>" + obj.VideoBaslik + "</a></div>";
                }
                jQuery(hedefDiv).html(img);
            },
            error: function () {
                jQuery(hedefDiv).html("");
            }
        });
    };

    f();


});

