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