$().ready(function() {  
	$('#legend_marketrow').hide();						   
	$('#legend_southmarketrow').hide();						   
	$('#legend_pinckney').hide();						   
	$('#legend_burberry').hide();						   
	$('#legend_sweetgrass').hide();						   
	$('#legend_retail').hide();						   
	$('#legend_marketview').hide();						   

	$('img[usemap]').maphilight({ 
	stroke:    false,
	fade:    false,
	fillColor:  'E14D53',
	fillOpacity: 0.6
	});

	$.fn.maphilight.defaults = {
		fill: true,
		fillColor: 'E14D53',
		fillOpacity: 0.6,
		stroke: false,
		strokeColor: 'ff0000',
		strokeOpacity: 1,
		strokeWidth: 1,
		fade: false,
		alwaysOn: false
	}

	$('#area_marketrow').hover(function(){
		$('#legend_marketrow').show();						   
		},
		function(){
		$('#legend_marketrow').hide();						   		
	});
	$('#area_southmarketrow').hover(function(){
		$('#legend_southmarketrow').show();						   
		},
		function(){
		$('#legend_southmarketrow').hide();						   		
	});
	$('#area_pinckney').hover(function(){
		$('#legend_pinckney').show();						   
		},
		function(){
		$('#legend_pinckney').hide();						   		
	});
	$('#area_burberry').hover(function(){
		$('#legend_burberry').show();						   
		},
		function(){
		$('#legend_burberry').hide();						   		
	});
	$('#area_sweetgrass').hover(function(){
		$('#legend_sweetgrass').show();						   
		},
		function(){
		$('#legend_sweetgrass').hide();						   		
	});
	$('#area_marketview').hover(function(){
		$('#legend_marketview').show();						   
		},
		function(){
		$('#legend_marketview').hide();						   		
	});
	$('#area_retail').hover(function(){
		$('#legend_retail').show();						   
		},
		function(){
		$('#legend_retail').hide();						   		
	});

	$('.circleA').hover(function(){
		$('#legend_marketrow').show();						   
		},
		function(){
		$('#legend_marketrow').hide();						   		
	});
	$('.circleB').hover(function(){
		$('#legend_southmarketrow').show();						   
		},
		function(){
		$('#legend_southmarketrow').hide();						   		
	});
	$('.circleC').hover(function(){
		$('#legend_pinckney').show();						   
		},
		function(){
		$('#legend_pinckney').hide();						   		
	});
	$('.circleD').hover(function(){
		$('#legend_burberry').show();						   
		},
		function(){
		$('#legend_burberry').hide();						   		
	});
	$('.circleE').hover(function(){
		$('#legend_sweetgrass').show();						   
		},
		function(){
		$('#legend_sweetgrass').hide();						   		
	});
	$('.circleF').hover(function(){
		$('#legend_marketview').show();						   
		},
		function(){
		$('#legend_marketview').hide();						   		
	});
}); 
