// thanks to Gabriel Svennerberg www.svennerberg.com
$(document).ready(function() {
	// Check if map exists
	if($('#map')) {
		// Loop through each AREA in the imagemap
		$('#map area').each(function() {
			// Assigning an action to the mouseover event
			$(this).mouseover(function(e) {
				var area_id = $(this).attr('id').replace('area_', '');
			//	$('#'+area_id).show();
				$('#'+area_id).fadeIn('slow', function() {
        			// Animation complete
      			});
			});
			// Assigning an action to the mouseout event
			$(this).mouseout(function(e) {
				var area_id = $(this).attr('id').replace('area_', '');
				$('#'+area_id).hide();
			});
			// Assigning an action to the click event
			$(this).click(function(e) {
				//e.preventDefault();
				//var area_id = $(this).attr('id').replace('area_', '');
				//alert('You clicked ' + area_id);
			});
		});
	}
});
