$(document).ready(function(){
	$(".tastingNotes").click(
		function(){
			$(".tastingNote").hide();
			$(this).next().show();
		}
	);
	$(".tastingNote").click(
		function(){
			if ($(this).css("display")=='block')
			$(this).hide();
		})
	
});

