$(document).ready(function(){
	
	$(".mapLocationWrapper").css("display","none");
	
	// Setup global map
	$(".mapDot").hover(function() {
		$(this).css("cursor","pointer");
		$(".mapLocationWrapper[rel="+$(this).attr("rel")+"]").css("display","block");
		
	},
	function() {
		$(this).css("cursor","default");
		$(".mapLocationWrapper").css("display","none");
	})
	
});


