jQuery.fn.MaxHeight = function(){
	return this.height( Math.max.apply(this, jQuery.map( this , function(e){ return jQuery(e).height() }) ) );
}

jQuery(document).ready(function() {
	jQuery('.backtotop').live('click', function(){
		jQuery('html, body').animate( { scrollTop:0 }, 'slow' );
	});
	jQuery('.equalheight').MaxHeight();
	jQuery('.feature_cta_padding').MaxHeight();
});
