jQuery(document).ready(function($) {
	var branch, branches;

	(branch = (branches = $('.locations').children()).eq(0)).show();
	$('#LocationsMap area').each(function(index) {
		$(this).hover(
			function() {
				branch.fadeOut('fast', function() {
					(branch = branches.eq(index)).fadeIn('fast');
				});
			},
			function() {
				branch.stop(true, true);
			}
		);
	});
});
