// cybernetix
//;jQuery.noConflict();
;jQ16x.equalizeHeights || (function($) {
	jQ16x.fn.equalizeHeights = function(options) {
		var _this, finalHeight = 0, outerHeight = 0;
		var isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
		settings = jQ16x.extend({
			 minHeight: -1
		}, options);		
		finalHeight = settings.minHeight;
			jQ16x(this)
				.each(function() {
					if ( (outerHeight = jQ16x(this).outerHeight(true) ) > finalHeight) finalHeight = outerHeight;
				})			
				.each(function() {
					(_this = jQ16x(this)).css( { height: "auto", height: (finalHeight - (_this.outerHeight(true) - _this.innerHeight())) + "px" } );
				});			
		_this = null;
		return this;
	};
})(jQuery);


