// JavaScript Document

/*
(function(jQuery) {
jQuery.fn.equalHeights = function(minheight) {
var maxheight = minheight || 0;
jQuery(this).children().each(function(){
maxheight = (jQuery(this).height() > maxheight) ? jQuery(this).height() : maxheight;
});
jQuery(this).children().css('height', maxheight);
}
})(jQuery);

jQuery('#main').equalHeights(300);
*/

function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

$(document).ready(function() {
    equalHeight($(".contentcol"));
});

$(document).ready(function() {
  $('.rounded').corners('15px');
});
