/**
 * MKEConsultores Class
 */
function MKEConsultores () {
	// Events
	$(this).bind('init', this.onInit());
}

MKEConsultores.prototype.onInit = function(e) {
	var _l0 = this;
	_l0.fixScrolls();
	//
	//$('.divMain').css('height', (screen.height-100)+'px');
}

MKEConsultores.prototype.fixScrolls = function() {
	var content = $('.divContentTwoParagraphs');
	var content_col1 = $('.tdCol1', content);
	var content_col2 = $('.tdCol2', content);
	if (content_col1.height() > 230 || content_col2.height() > 230) {
		content_col2.css('padding', '0px 20px 0px 20px');
	}
}