/* 
 * Netlash Collapser : Collapser for ze ChocolateShop!
 *
 * @author Bram Van Damme <bramus@netlash.com>
 */
 
jQuery(document).ready(function($){
	$('#sidebar-assortiment > ul > li > a.toggle').css("outline","none").bind("click", function(e) {
		
		// hide all
		$(this).parent().parent().find("ul").hide();
		
		// show/hide me
		$(this).parent().find("ul").toggle();
		
		// cancel event
		return false;
	});
});