$(document).ready(function(){

$('area').hover(function(){		

	$('.hub-over').hide();
	
	show = '#' + $(this).attr("title") + '-content';
	$(show).show();
});

$('#locations-map-contain').mouseleave(function(){
	$('.hub-over').hide();
});

$('#all-locations-body-content #right img').hover(function(){
	$('.hub-over').hide();
	show = '#' + $(this).attr("name") + '-content';
	$(show).show();
});


});
