$(document).ready(function(){

	// Latitude & Longtitude Markers
	var businessLocation = new google.maps.LatLng(-45.032165, 168.658091);
	var mapCenter = new google.maps.LatLng(-45.03100, 168.65986);

	var myOptions = {
		zoom: 16,
		center: mapCenter,
		mapTypeId: google.maps.MapTypeId.ROADMAP 
	}

	var map = new google.maps.Map(document.getElementById("map-canvas"), myOptions);

	var businessLocationMarker = new google.maps.Marker({
		map:map,
		title: "Southern Lakes English College",
		animation: google.maps.Animation.DROP,
		position: businessLocation 
	});

	var infowindow = new google.maps.InfoWindow({
		content: $("#map-bubble-container").html()
	});

	infowindow.open(map,businessLocationMarker);
 });

