// JavaScript Document

$('document').ready(function(){
	
	$('#mapForm').change(function(){		
		var selectedCounty = $('#mapForm option:selected').val();		
		if( selectedCounty=='ALL'){
			$('a.dot').show(1000);	
		}else{
			$('a.dot[county*="'+selectedCounty+'"]').show(1000);
			$('a.dot[county!="'+selectedCounty+'"]').hide(1000);
		}			
	});
	
	$('a.dot').click(function(){
		$('a.dot').removeClass('selected');
		$(this).addClass('selected');
		
		var city = '.city_detail#' + $(this).attr('city');
		var htmlCode = $(city).html();
		
		$('.detail_container').fadeOut(500, function(){
			$('.detail_container .city_detail').html(htmlCode);
			$('.detail_container').fadeIn(500);	
			
			});
		
		});
	
	
	});
