
$(document).ready(function(){

	   
	$('.bottle').hover(function(){
		//grab id of bottle hovered over
		currentId = $(this).attr('id');
		
		//show the corresponding paragraph in the right to the bottle with matching IDs
		$('#intro').hide();
		console.log(currentId);
		$('#info #'+currentId).show();

		//Now make the bottle image larger
		$(this).find('img').css({
			width: 89,
			marginTop: -20,
			marginLeft: -5
		});
		$(currentId).fadeIn();
	},function(){
		$(this).find('img').css({
			width: 79,
			marginTop: 0,
			marginLeft: 0
		});
		$('#intro').show();
		$('#beer_description #'+currentId).hide();
	});
 });
 
