/* ILC-Folding
 * http://ilovecolors.com.ar/folding-menu-plugin-wordpress/
 */
 
 var $j = jQuery.noConflict();

$j(function(){
	$j(".page_item ul").hide();
	$j(".current_page_item ul:first").show();
	$j(".current_page_item")
		.parents("ul, li")
		.map(function () { 
			$j(this).show();
		});
}); 