$(document).ready(function(){
	$("ul.tree li").each(function(){
		if($(this).find("ul").length>0){
			$(this).prepend('<span class="folder"></span>');
		} else {
			$(this).css('margin-left','-20px');
		}
	});
	$("ul.tree span.folder").each(function(){
		$(this).data('open','0');
	});
	$("ul.tree span.folder").bind('click',function(){
		if($(this).data('open')=='0'){
			$(this).data('open','1');
			$(this).parent().children('ul').css('display','block');
			$(this).css('background-position','0px -16px');
		} else {
			$(this).data('open','0');
			$(this).parent().children('ul').css('display','none');
			$(this).css('background-position','0px 0px');
		}
	});
});
