$(document).ready(function(){
	
	$('.Brewery a').hover(function(){
		$(this).children('.Name').css('text-decoration', 'underline');
	}, function(){
		$(this).children('.Name').css('text-decoration', 'none');
	});
	
});