$(document).ready(function() {
	/* Remove the border on the last item of the list. Could do in CSS, but this is cross-browser. */
	$("#topnav a:last").css({border: "none"});
	
	popOut({adContainer: "#wsm1", adBox: "#wsm1ad", adCookie: "wsm1ad"});
	
	/* Set the "active" class on the currently active navigation item. */
	if(location.pathname != "/") {
		$('#topnav a[href*="' + location.pathname.substring(0,5) + '"]').addClass('active');
	} else $("#topnav a:eq(0)").addClass('active');

	/* Equalize the heights of columns. */
	$(".home #show, .home #mag div, .home #etips div").equalHeights();
	$("#season-current a, #season-previous a, #ad-etips a, #ad-woodsmith a, #products #products-list").equalHeights(145);
});