$(document).ready(function(){
	$(".header img, .beer-icons img, .bar-nav img, .map img, .contact-brewbar img, input[type=image].hover, img.hover").hover(
		function(){
			$(this).attr('src',$(this).attr('src').replace('.gif','-hi.gif'));
		},
		function(){
			$(this).attr('src',$(this).attr('src').replace('-hi.gif','.gif'));
		}
	);
	
	$(".tvads .col-a img, .tvads .col-c img").hover(
		function(){
			$(this).addClass("hi");
		},
		function(){
			$(this).removeClass("hi");
		}
	);
});

$(window).load(function(){
	$.preloadCssImages();
});