(function ($) {
	$.fn.extend({
		showMe: function (value, callback) {
			$(this).each(function () {
				if ("undefined" == typeof value) {
					value = 'block';
				};
				$(this).css('display', value);
				if ("undefined" != typeof callback) {
					callback(this, value);
				};
			});
			return $(this);
		},
		hideMe: function (callback) {
			$(this).each(function () {
				$(this).css('display', 'none');
				if ("undefined" != typeof callback) {
					callback(this);
				};
			});
			return $(this);
		}
	})
})(jQuery);
