/*
 * Netlash Collapser : Collapser for ze VinoShop!
 *
 * @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
		if ($(this).attr('href') == '#')
			return false;
	});
});