jQuery.fn.fixBox = function() {  
	return this.each(function() {  
		var $$ = $(this);  
		var hd = $$.outerHeight() - $$.height();  
		var wd = $$.outerWidth() - $$.width();  
  
		if (!$$.boxModel) {  
			if ($$.css("height") != "auto" && hd > 0) $$.height($$.outerHeight() + hd);  
			if ($$.css("width") != "auto" && wd > 0) $$.width($$.outerWidth() + wd);  
  		}  
  	});  
};  