var IE6 = !!($.browser.msie && parseInt($.browser.version, 10) === 6);
$(document).ready(function(){
	if (IE6) {
		$('body').prepend('<div id="oldIE"><strong>NOTE:</strong> To sign into After the Meeting, you need at least <a href="http://www.microsoft.com/windows/internet-explorer">Internet Explorer version 7 or later</a>.</div>');
	}
	// added the if/length to keep IE 6-7 from erroring when no thumbnails are on a page.
	if ($('a.th').length > 0) $('a.th').fancyZoom({ directory:'scripts/fancyzoom'});
});

