$(function(){
	/*$(function(){
		// Hide all subgroups
		$('li.widget_pages>ul>li>ul').hide();
		// Show the current one
		$('li.widget_pages>ul>li>ul>li.current_page_item').parent().show();
		// Remove hover effects from the now inactive links
		$('li.widget_pages>ul>li>a:hover').css({'color':'inherit','background':'inherit'});
	});
	$('li.widget_pages>ul>li>a').click(function(){
		$(this).parent().find('ul').slideToggle(150);
		return false;
	});*/
	
	$(function(){
		// Hide all subgroups
		$('li.widget_pages>ul>li>ul').hide();
		// Show the current one and its children
		$('li.widget_pages .current_page_item').parent().show();
		$('li.widget_pages .current_page_item').children().show();
	});
});