// JavaScript Document
$(document).ready( function() {
    $('#price_tree').fileTree({
		root: "/root",
		script: '/price/get?tname=ajax/pricesTree.html',
		expandSpeed: 500,
		collapseSpeed: 500,
		expandEasing: 'easeOutBounce',
		collapseEasing: 'easeOutBounce'
	},
	function(file) {
        //alert('Загрузка прайс-листа '+file);
		window.location = file;
    });
});
