﻿$(document).ready(function () {
    $(".presel").click(function () { $(this).next().toggle(); });
$(document).click(function (e) {
    var $target = $(e.target);

    //alert();
    //alert($(this).attr("class"));
    $(".checkList").each(function () {
        //alert("asd");

        //alert($target.next().attr("class"))
        if ($target.next().attr("class") != $(this).attr("class")) {
            //$("span").html(Date());


            if ($target.get(0).tagName == "HTML") {
                $(this).hide();
            }
            else {
                if ($target.parent().attr("class") != $(this).attr("class")) {

                    $(this).hide();
                }
            }
        }
    });
});

});
