// DOM ready
$(function() {
	// IE6 only
	if(navigator.userAgent.indexOf('MSIE 6') != -1)
	{
		// Ingredient hover/leave
		$('#list_box ul li').hover(
			// Hover
			function() {
				// Get nutrient info
				var info = $(this).children('span');

				// Show info
				$(info).show();
			},

			// Leave
			function() {
				// Get nutrient info
				var info = $(this).children('span');

				// Hide info
				$(info).hide();
			}
		);
	}
});
