$(document).ready(function(){
	// Add (non-semantic) map container
	$("#address").append('<div id="livemap" style="position:relative; width:432px; height:400px;"></div>');

	if(typeof(VEMap) != "undefined"){
		// Create Map
		map = new VEMap('livemap');
	
		// Display Map
		map.SetDashboardSize(VEDashboardSize.Small);
		map.LoadMap(new VELatLong(30.010563, -95.583171),15,'r',false);	
	
		//Add Pushpin
		var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter());
		shape.SetTitle('Waypoint Offices');
		map.AddShape(shape);
	}
});