/* Easy Slider */
$(document).ready(function(){	
			$(".featured").easySlider({
				auto: true, 
				continuous: true,
				speed: 2000,
				pause: 6000,
				prevId: 		'prevBtn',
				prevText: 		'',
				nextId: 		'nextBtn',	
				nextText: 		'',
				controlsShow:		false,
			});
		});	


/* Equal Heights */
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {equalHeight($(".about-sub-col"));});

