function initialize() {
	var defaultPosition = new google.maps.LatLng(33.500000,-112.000000);
    var myOptions = {
		zoom: 9,
		center: defaultPosition,
		mapTypeId: google.maps.MapTypeId.ROADMAP
    }

	var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);


	// Marker Positions

	var image = '/common/images/graphic/map_marker.png';
	var marker1 = new google.maps.LatLng(33.248133,-111.840502);
	var marker2 = new google.maps.LatLng(33.675518,-111.893844);
	var marker3 = new google.maps.LatLng(33.237136,-111.852864);
	var marker4 = new google.maps.LatLng(33.48336,-112.509436);
	var cachet1 = new google.maps.Marker({
	  position: marker1,
	  map: map,
	  icon: image
	});
	var cachet2 = new google.maps.Marker({
	  position: marker2,
	  map: map,
	  icon: image
	});
	var cachet3 = new google.maps.Marker({
	  position: marker3,
	  map: map,
	  icon: image
	});
	var cachet4 = new google.maps.Marker({
	  position: marker4,
	  map: map,
	  icon: image
	});

	
	
	// Info Window Content
	var contentCachet1 = '<div class="map_info_content"><strong>Cachet Homes at Paseo Lindo</strong><br/>3561 S. Arizona Place<br/>Chandler, AZ 85286<br/>480 656-6208</div>';
	var contentCachet2 = '<div class="map_info_content"><strong>Encore at Grayhawk</strong><br/>20750 N. 87th Street<br/>Scottsdale, AZ 85255<br/>480 419-7656</div>';
	var contentCachet3 = '<div class="map_info_content"><strong>Crescent Falls</strong><br/>4700 S. Fulton Ranch Blvd.<br/>Chandler, AZ 85248<br/>480 802-8991</div>';
	var contentCachet4 = '<div class="map_info_content"><strong>Cachet Homes at Verrado</strong><br/>20895 West Western Drive<br/>Buckeye, AZ 85396<br/>623 444-4961</div>';

	
	// Info Window Popups
	var infoCachet1 = new google.maps.InfoWindow({content: contentCachet1, maxWidth: 400});	
	var infoCachet2 = new google.maps.InfoWindow({content: contentCachet2});	
	var infoCachet3 = new google.maps.InfoWindow({content: contentCachet3});	
	var infoCachet4 = new google.maps.InfoWindow({content: contentCachet4});
	function closeAllInfoWindows(){infoCachet1.close();infoCachet2.close();infoCachet3.close();infoCachet4.close();};
	

	google.maps.event.addListener(cachet1, 'click', function() {closeAllInfoWindows();infoCachet1.open(map,cachet1);});
	google.maps.event.addListener(cachet2, 'click', function() {closeAllInfoWindows();infoCachet2.open(map,cachet2);});
	google.maps.event.addListener(cachet3, 'click', function() {closeAllInfoWindows();infoCachet3.open(map,cachet3);});
	google.maps.event.addListener(cachet4, 'click', function() {closeAllInfoWindows();infoCachet4.open(map,cachet4);});

	
	




}

