;(function($){
	$.fn.cssreset = function(){
		return this.each(function() {
			var divContent = $(this).html();
			var checkContent = new String(divContent);
			var checkContent = $.trim(checkContent);
			if(checkContent.length == 0) {
				$(this).css('margin-top','0pt');
				$(this).css('margin-bottom','1px');
			}
		});
	};
})(jQuery);