/*
	We like tidy columns here at Red Hammer. This script keeps the lower content and sidebar columns at the same height.
	
	Requires:
	- jquery library
*/
jQuery(document).ready(function($) {
	
	//Set our div heights
	var contentAreas = document.getElementsByClassName('lower');
	var maxHeight=0;
	var containerHeight=0;
	//Determin max lower container height
	for(var i = 0; i<contentAreas.length; i++) {
		containerHeight = jQuery(contentAreas[i]).height();
		maxHeight = Math.max(containerHeight,maxHeight);	
	}
	//Now adjust all container heights to max
	for(var i = 0; i<contentAreas.length; i++) {
		jQuery(contentAreas[i]).height(maxHeight + 'px');
			
	}
	
	
	
	
		
}); // end doc ready
