﻿$(document).ready(function() {
    // my example tree view //Page Load
    $("#red").treeview({
        animated: "medium",
        collapsed: true,
        control: "#treecontrol",
		unique: true,
		persist: "location",
		toggle: function() {
			window.console && console.log("%o was toggled", this);
		}
    });
})

