jQuery(document).ready(function() {
	locations = new Array();
	locations[0] = new Array('West Los Angeles', new google.maps.LatLng(34.0172104,-118.419629));
	locations[1] = new Array('San Gabriel Valley', new google.maps.LatLng(34.1508926,-118.1605639));
	locations[2] = new Array('Long Beach/South Bay', new google.maps.LatLng(33.8317221,-118.2618343));
	locations[3] = new Array('Orange County', new google.maps.LatLng(33.7416,-117.8058));
	
	var myOptions = {
		zoom: 9,
		center: new google.maps.LatLng(33.95388,-118.15095),
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	
	var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	for (var i = 0; i < locations.length; i++) {
		var class = locations[i];
		var marker = new google.maps.Marker({
			position: class[1], 
			map: map, 
			title: class[0]
		});
	}
});