$(function() {
		// set opacity to nill on page load
		$("ul#subnav_plain span").css("opacity","0");
		// on mouse over
		$("ul#subnav_plain span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 400);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 400);
		});
	});

$(function() {
		// set opacity to nill on page load
		$("ul#subnav_brands span").css("opacity","0");
		// on mouse over
		$("ul#subnav_brands span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 400);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 400);
		});
	});

$(function() {
		// set opacity to nill on page load
		$("ul#subnav_recipes span").css("opacity","0");
		// on mouse over
		$("ul#subnav_recipes span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 400);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 400);
		});
	});

$(function() {
		// set opacity to nill on page load
		$("ul#subnav_cookingtools span").css("opacity","0");
		// on mouse over
		$("ul#subnav_cookingtools span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 400);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 400);
		});
	});

$(function() {
		// set opacity to nill on page load
		$("ul#subnav_newscenter span").css("opacity","0");
		// on mouse over
		$("ul#subnav_newscenter span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 400);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 400);
		});
	});