
var design = {
	showLoginForm: function() {
		zenThirdEye.show('#form-login');	
		jQuery('#form-login input:first').focus();
		return;
	},
	cancelLoginForm: function() {
		zenThirdEye.hide();
		return;
	},
	
	showSignupForm: function() {
		zenThirdEye.show('#form-signup');	
		jQuery('#form-signup input:first').focus();
		return;
	},
	cancelSignupForm: function() {
		zenThirdEye.hide();
		return;
	}
};

jQuery(document).ready(function(){
	jQuery('.zen-msg').bind('click',function(){
		jQuery(this).fadeOut();
		return;
	}).css('cursor','pointer');
	
	jQuery('.docbook dl dt').bind('click',function(){
		jQuery('#' + this.id + '-comment').toggle();
	}).css('cursor','pointer');
});

