﻿var strDetayURL = "IngilizceMevzuatDetay.aspx";
$(document).ready(function()
{	
    //$('#DivSepetUyari').slideToggle('normal');

    $("#tree").treeview({
	    collapsed: true,
	    animated: "fast",
	    unique: true,
	    control:"#sidetreecontrol",
	    persist: "location"
    });

    $('A[rel="detaylink"]').click( function(e) {
    key = $(this).attr('id').substring(1);
    var adres = strDetayURL + "?mod=ax&mkid=" + String(key);
    e.preventDefault();
    tb_Modal('Mevzuat Detayı', adres,900, 500, false)
	
    return false;
    });
	
});
