$(document).ready(function (){
		
		// TREE MENU
		$('#treeMenu ul li:has("div")').find('span:first').each(function (i)
		{
			if($(this).attr('class') == 'opened')
			{
				$(this).parent().find('div').show();
			}
			else
			{
				$(this).parent().find('div').hide();	
			}
		});
		
		$('#treeMenu ul li:not(:has("div"))').find('span:first').each(function (i)
		{
			$(this).css({backgroundPosition: '-40px 0px'});
		});

		$('#treeMenu ul li:has("div")').find('a:first').each(function (i)
		{
			if($(this).attr('href')=='#')
			{
				$(this).click (function (){ 
					$(this).parent('li').find('span:first').toggleClass('opened');
					$(this).parent('li').find('div:first').slideToggle();
					return false;
		 		});	
			}
		});
			
		$('#treeMenu li:has("div")').find('span:first').click (function (){ 
			$(this).parent('li').find('span:first').toggleClass('opened');
			$(this).parent('li').find('div:first').slideToggle();
			return false;
		 });
	});
