$(document).ready(function() {
	$('dl.container').each(function() {
		$(this).css('height', $(this).height());
		
		$(this).find('dt, dd').each(function() {
			$(this).css('height', $(this).height());	
		});
	});

	// RSS event tracking
	$('#feeds a').click(function() {
		var feedName = $(this).text();
		_gaq.push(['_trackEvent', 'RSS', 'Subscribe', feedName]);
	});
});
