$(document).ready(function(){

		$("dd").hide();

		var i=1;

		$("#myBeer").click(function(){

		i++;

		if (i>2){i=1};

			if (i==1){$("dd").fadeOut();};//change 'slideUp("slow")' to '.hide()' if the bounce is too much

			if (i==2){$("dd").fadeIn();};//change 'slideDown("slow")' to '.show()' if the bounce is too much

			return false;

			i++;	

		});

		$(".sub").click(function(){

		$("dd").hide();});

	});
