var locations_data = { locations: [
	{
		simpleContent: "<h3>Cessnock Office</h3><strong>Address:</strong> 50 Vincent Street<br />Cessnock<br />NSW<br />2325<br /><br /><strong>Freecall:</strong> 1800 623 669<br /><strong>Fax:</strong> 02 4990 3195",
		maximizedContent: "gmap_cessnock.html",
		latitude: -32.834525,
		longitude: 151.35669,
		icon: "images/pinpoint.gif",
		zoom:  16
	},
	{
		simpleContent: "<h3>Newcastle Office</h3><strong>Address:</strong> 1/796 Hunter Street<br />Newcastle<br />West NSW<br />2302<br /><br /><strong>Freecall:</strong> 1800 653 873<br /><strong>Fax:</strong> 02 4961 1849",
		maximizedContent: "gmap_newcastle.html",
		latitude: -32.925402,
		longitude: 151.760428,
		icon: "images/pinpoint.gif",
		zoom: 16
	}
]};
$(document).ready(function(){
	$("#gmaps_container").gmaps({
		data: locations_data,
		zoom: 16,
		maptype: G_NORMAL_MAP,
		center: [-32.925402,151.760428],
		relativepath: "http://emery.oxygenwebsite.com/"
	});
});
