/*

	Treemenu Javascript
	Copyright 2008 - Colabo Hosting and Development
*/

$(document).ready(function() 
{ 
	
	$("ul#Treemenu li").each(function() 
	{  
		var ThisElement = this;
		
		$(this).children(".btn").toggle(function() {  
		
		
			$(this).html("<img src=\"/js/subtract.gif\" border=\"0\" />");
			$(ThisElement).children("ul").show("normal");
		
		}, function() {  
		
		
			$(ThisElement).children("ul").hide("normal");
			$(this).html("<img src=\"/js/expand.gif\" border=\"0\" />");
		
		});

	});
	
	//Toggle opened elements
	$("a.opened").click();
	
});