﻿$(document).ready(function() {
if ($(".content")!=null)
$(".content").hide();
$(".link").each(function() {
    $("#link" + this.id + "_img_div").html("<img alt=\"\" border=\"0\" src=\"images/arti.gif\" />");
    var t = this.id;
    $("#" + this.id + "").click(function() {
        $("#content" + this.id + "").slideToggle("slow", function() {
            if ($("#hs" + t + "").text() == 0) {
                $("#link" + t + "_img_div").html("<img alt=\"\" border=\"0\" src=\"images/eksi.gif\" />");
                $("#hs" + t + "").text(1);
            }
            else {
                $("#link" + t + "_img_div").html("<img alt=\"\" border=\"0\" src=\"images/arti.gif\" />");
                $("#hs" + t + "").text(0);
            }

        });

    });
});
});
