$(function(){
	$("#sidebar a.currentPage").each(function(){
		$(this).parents("ul.sitemap").add($(this).find("+ ul")).show();
	});
	// $("a").hover(
	// 	function(){
	// 		$(this).children("img").fadeTo(150, 0.7);
	// 	},
	// 	function(){
	// 		$(this).children("img").fadeTo(150, 1);
	// 	}
	// );
	
});