(function(jQuery) {
	jQuery.fn.menuClick = function() {
		jQuery(this).bind('click',function() {
			if (jQuery(this).hasClass("act")){				   
				jQuery(this).removeClass("act");
				jQuery(this).next().slideUp();
			}
			else{				   
				jQuery(this).addClass("act");
				jQuery(this).next().slideDown();
			}
		});
		if (!jQuery(this).hasClass("act")){	
			jQuery(this).next().slideUp();
		}
	};
})
(jQuery);
jQuery(function(){jQuery('.accountInfo h4').menuClick();});
//jQuery(function(){jQuery('.mailBox h4').menuClick();});