﻿function eqaulHeightColumns(selector)
{
	var tallestColumn = 0;
	$(selector).each(function(i){
		if ($(this).height() > tallestColumn)
		{
			tallestColumn = $(this).height();
		}
	});
	$(selector).height(tallestColumn);

}

$(document).ready(function() {
	
	eqaulHeightColumns("#teams li");
	
	$(window).resize(function() {
		($(this).width()<635) ? $("#teams li").css({'height': 'auto'}) : eqaulHeightColumns("#teams li");
	});
	
	$("#nav li a").click(function(e){
		e.preventDefault();
		var id = $(this).attr("href");
		var targetOffset = $(id).offset().top - 20;
		self.location.hash = id;
		$("html, body").scrollTop(0);
   		$("html, body").animate({scrollTop: targetOffset}, 1000, function(){
		});
	});
	
});


