$(document).ready(function() {
	// MENUBAR HOVERS
	$("#menu_beer").hover(
		function(){
			$(this).attr("src", "i/menu_beer_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_beer_default.gif");
	});
	
	$("#menu_breweries").hover(
		function(){
			$(this).attr("src", "i/menu_breweries_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_breweries_default.gif");
	});
	
	$("#menu_events").hover(
		function(){
			$(this).attr("src", "i/menu_events_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_events_default.gif");
	});
	
	$("#menu_blog").hover(
		function(){
			$(this).attr("src", "i/menu_blog_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_blog_default.gif");
	});
	
	$("#menu_photos").hover(
		function(){
			$(this).attr("src", "i/menu_photos_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_photos_default.gif");
	});
	
	$("#menu_maps").hover(
		function(){
			$(this).attr("src", "i/menu_maps_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_maps_default.gif");
	});
	
	$("#menu_contact").hover(
		function(){
			$(this).attr("src", "i/menu_contact_hover.gif");
		},
		function(){
			$(this).attr("src", "i/menu_contact_default.gif");
	});
});