$(function() {

	var newSelection = "";
	
	$("#flavor-nav a").click(function(){
	
	    $("#all-flavors").fadeTo(200, 0.10);
	
		$("#flavor-nav a").removeClass("current");
		$(this).addClass("current");
		
		newSelection = $(this).attr("rel");
		
		$(".flavor").not("."+newSelection).slideUp();
		$("."+newSelection).slideDown();
		
	    $("#all-flavors").fadeTo(600, 1);
		
	});
		var newSelection = "";
	
	$("#flavor-nav1 a").click(function(){						  
	
	  
		$("#flavor-nav1 a").removeClass("current1");
		$(this).addClass("current1");
		
		newSelection = $(this).attr("rel");
		
		$(".flavor1").not("."+newSelection).hide();
		$("."+newSelection).show();
		
	    $("#all-flavors1").fadeTo(600, 1);
		
	});
		
});

