$(function(){
	$('a#wys_pan_hook').click(function(){$('#wys_pan_wrap').slideToggle(); return false;});
	$('#wys_pan_wrap').css('display', 'none');
	$('li.toggle').click(function(event) {
		if (event.target == this) {
			$(this).find('ul.options').slideToggle().end();
		}
	});
	$('ul.options').css('display', 'none');
});