	function initialize() {
		var latlng = new google.maps.LatLng(-33.89279, 151.164199);
		var settings = {
			zoom: 15,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
			mapTypeId: google.maps.MapTypeId.ROADMAP
    };
var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
//for pop-up box
var contentString = '<div id="content">'+
    '<div id="siteNotice">'+
    '</div>'+
    '<h1 id="firstHeading" class="firstHeading">Bridesinbloom</h1>'+
    '<div id="bodyContent">'+
    '<p>Bridesinbloom is an integrated wedding flower and wedding cake business based in Sydney, and now with a showroom in North Melbourne, with the capabilities to deliver throughout both CBDs.</p>'+
    '</div>'+
    '</div>';
 
var infowindow = new google.maps.InfoWindow({
    content: contentString
});
//for logo
var companyLogo = new google.maps.MarkerImage('/images/logo.png',
	new google.maps.Size(48,61),
	new google.maps.Point(0,0),
	new google.maps.Point(30,50)
);
var companyShadow = new google.maps.MarkerImage('/images/logo_shadow.png',
	new google.maps.Size(130,50),
	new google.maps.Point(0,0),
	new google.maps.Point(65, 50)
);
var companyPos = new google.maps.LatLng(-33.89279, 151.164199);
var companyMarker = new google.maps.Marker({
	position: companyPos,
	map: map,
	icon: companyLogo,
	shadow: companyShadow,
	title:"Brides in Bloom",
});
google.maps.event.addListener(companyMarker, 'click', function() {
  infowindow.open(map,companyMarker);
});
}