// JavaScript Document
$(document).ready(function() {
	var maxHeight = 0 ;
	$('.relative')
		.each(function() { maxHeight = Math.max(maxHeight, $(this).height()); })
    .height(maxHeight);

 });
