$(document).ready(function(){
	$("#red").treeview({
		animated: "fast",
		collapsed: true,
		unique: true,
		persist: "cookie",
		toggle: function() {
			window.console && console.log("%o was toggled", this);
		}
	});	
	$('#categoriesContent ul li').each(function(i){
		//$(this).hover(function(){alert($(this).find('ul').length);});
		if($(this).find('ul').length!=0){
			$(this).find(' > span')[0].innerHTML=$(this).find(' > span a')[0].innerHTML;
			//$(this).find(' > span').hover(function(){alert(this.innerText);});
		}
	});
	$('#categoriesContent > ul > li').each(function(i){
			$(this).find(' > span').addClass('first');									  
	});
});

