/*
icona "status" dell'utente
OPTIONS ------------------------------
- status		=	'online', 'offline', 'away'
 */
(function(jQuery) {
	var mStatus = function status(_status) {
		var _status = _status ? _status : 'undefined';
		$(this).removeClass().addClass('status status-' + _status);
	};
	jQuery.fn.status = mStatus;
	jQuery.status = mStatus;

})(jQuery);
