jQuery.noConflict(); 

jQuery(document).ready(function(){

// hide all children lists
var masterUL = jQuery('ul.shopp_categories');
masterUL.find('li>ul').hide();
// show current list
masterUL.find('li.current>ul').show();
masterUL.find('li.current').parent().show();
// find all parent li's with anchors
jQuery('ul.shopp_categories').children().find('>a').click(function(){
	// find the coresponding sublist
	var childUL = jQuery(this).parent().find('ul');
	// if already visible or doesn't exist activate link
	if(childUL.is(':visible') || childUL == null){
		return true;	
	}else{
		// animate this list, hide the other
		childUL.animate({ height: "show" });
		jQuery(this).parent().siblings().find('ul').animate({ height: "hide" });
	}
	return false;
});

});	

