$(document).ready(function(){
		
	$('img#bottle').css({ 'opacity' : '.0' });
			
	$('li#ourbeers').hover(function() {
		$('img#bottle').stop().animate({ 'opacity': '1' });
	}, function() {
		$('img#bottle').stop().animate({ 'opacity': '.0' });
	});			



	$('img#telephone').css({ 'opacity' : '.0' });
			
	$('li#contact').hover(function() {
		$('img#telephone').stop().animate({ 'opacity': '1' });
	}, function() {
		$('img#telephone').stop().animate({ 'opacity': '.0' });
	});			



	$('img#newspaper').css({ 'opacity' : '.0' });
			
	$('li#newsfeed').hover(function() {
		$('img#newspaper').stop().animate({ 'opacity': '1' });
	}, function() {
		$('img#newspaper').stop().animate({ 'opacity': '.0' });
	});	



	$('img#balloons').css({ 'opacity' : '.0' });
			
	$('li#events').hover(function() {
		$('img#balloons').stop().animate({ 'opacity': '1' });
	}, function() {
		$('img#balloons').stop().animate({ 'opacity': '.0' });
	});
	
	
	$('img#keg').css({ 'opacity' : '.0' });
			
	$('li#thebrewery').hover(function() {
		$('img#keg').stop().animate({ 'opacity': '1' });
	}, function() {
		$('img#keg').stop().animate({ 'opacity': '.0' });
	});
	
	
	$('img#gohome').css({ 'opacity' : '.0' });
			
	$('img#logo').hover(function() {
		$('img#gohome').stop().animate({ 'opacity': '1' });
	}, function() {
		$('img#gohome').stop().animate({ 'opacity': '.0' });
	});
}); 
