$(document).ready(function() {
	// Poolroom
	$('.poolroom').mouseover(function(){
		var club = $(".club", this) .text();
		var location = $(".location", this) .text();
		
		$("#poolroom_info").html('<b>' + club + '</b><br />' + location);
	});

	$('.poolroom').mouseout(function(){
		$("#poolroom_info").html('&nbsp;');
	});
	
	// Contact
	$(".toggle").click(function () {
      $("#more_info").toggle();
    });

	// Fancybox
	$("a.fancybox").fancybox({
		'hideOnContentClick': true,
		'overlayShow': true,
		'overlayOpacity': 0.85,
		'padding': 0,
		'centerOnScroll': true,
		'frameWidth': 500,
		'frameHeight': 375
	});

});
