jQuery(document).ready(function($) {
	$("ul.sf-menu").superfish({
		animation:     {opacity:"show",height:"show"},  // fade-in and slide-down animation
		delay:        0,                            	// delay on mouseout
		speed:        "fast",  							// animation speed
		autoArrows:   "on",  							// enable generation of arrow mark-up
		dropShadows:  ""  								// enable drop shadows
	});



	$('.toggle_container').hide();
	$('.trigger:first').addClass('active').next().show();
	$('.trigger').click(function(){
		if( $(this).next().is(':hidden') ) {
			$('.trigger').removeClass('active').next().slideUp();
			$(this).toggleClass('active').next().slideDown();
		}
		return false;
		});

});
