/* Author: Eurelis */
$(function() {
  var setColumnsHeight = function() {
  	$('#col1, #col1_content, #col2, #col2home, #col2_content, #col3, #col3_content').equalHeightColumns();
  	$('.adherents-left, .adherents-content, .adherents-right').equalHeightColumns();
  },
  setInputStyle = function() {
    $('label').inFieldLabels();
  },
  doStuff = function() {
  	setInputStyle();
  	setColumnsHeight();
  };
  
  doStuff();
});
