$(function() {
	
	// Handle external links
	$("A[rel='external']").click(function() {
		window.open($(this).attr('href'));
		return false;
		});
	
	// Table hover
	$('.nutritionalInfo tr, .buttermilkConversations tbody tr').hover(function() {$(this).addClass('trHover');}, function() {$(this).removeClass('trHover');});

	});
