
    $(function () {
            $("#down").jstree({
                "types" : {
			"valid_children" : [ "file" ],
			"types" : {
				"file" : {
					"icon" : {
						"image" : "img/file1.png"
					}



				},
				"default" : {
					"valid_children" : [ "default" ]
				}
			}
		},
                "plugins" : ["themes","html_data","types","sort"]
            });
    });
      var cont = 5;
      function contador() {
        $("#tempo").html(cont);
        if(cont == 0) {
          location.href= "http://www.nmsoftware.com.br";

        }
        if (cont != 0){
          cont = cont-1;
        setTimeout("contador()", 1000);
        }

      }

