;(function($){$.fn.ceNormaliser=function(options){options=$.extend({},$.fn.ceNormaliser.defaultOptions,options);var that=this;that.each(function(){var h=0;switch(options.heightType){case'inner':h=$(this).innerHeight();break;case'outer':h=$(this).outerHeight();break;case'outerMargin':h=$(this).outerHeight(true);break;default:h=$(this).height();}
if((options.parent!==null&&$(options.parent).find($(this)).length>0)||options.parent===null){options.height=Math.max(h,options.height);}});return that.each(function(){if((options.parent!==null&&$(options.parent).find($(this)).length>0)||(options.parent===null)){$(this).height(options.height);}});};$.fn.ceNormaliser.defaultOptions={parent:null,height:0,heightType:'height'}})(jQuery);
