$(document).ready(function () {
	setup_gmap();
	
	$('.property-name, .marker').click(function () {
		var id = $(this).attr('property_id');
		showMapPopup(id);
	});
	
	$('#view-northern-california').click(function () {
		showNorthernCalMap();
		$('#northern-california-header-bar').show();
		$('#all-locations-header-bar').hide();
		$('#southern-california-header-bar').hide();
		
		$('.northern-california').show();
		$('.southern-california').hide();
		return false;
	});
	
	$('#view-southern-california').click(function () {
		showSouthernCalMap();
		$('#southern-california-header-bar').show();
		$('#all-locations-header-bar').hide();
		$('#northern-california-header-bar').hide();
		
		$('.southern-california').show();
		$('.northern-california').hide();
		return false;
	});
	
	$('#view-all').click(function () {
		resetMap();
		$('#all-locations-header-bar').show();
		$('#northern-california-header-bar').hide();
		$('#southern-california-header-bar').hide();
		
		$('.location').show();
		$('#all-locations-header-bar').show();
		return false;
	});
});

