// Google Map API 3

// Code below replaces adding code to body tag - <body onLoad="initialize(), showMap()">
window.onload=function(){
 initialize();

}
// end of code

function initialize() {
var latlng = new google.maps.LatLng(40.40955,-74.314637);
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.HYBRID
};


var map = new google.maps.Map(document.getElementById("mapCanvas"), settings);
var companyPos = new google.maps.LatLng(40.40955,-74.314637);
var companyMarker = new google.maps.Marker({
position: companyPos,
map: map,
title:"Glenwood Country Club 732-607-2582",
     icon: 'http://www.njgolfclub.com/images/golf.png' 
 });

// Hide additional marker
//var companyLogo = new google.maps.MarkerImage('http://www.njgolfclub.com/images/gcc-mapicon2.gif',
//new google.maps.Size(100,100),
//new google.maps.Point(0,0),
//new google.maps.Point(80,80)
//);

// 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(40.40955,-74.314637);
//var companyMarker = new google.maps.Marker({
//position: companyPos,
//map: map,
//icon: companyLogo,
// shadow: companyShadow,
//title:"Glenwood Country Club 732-607-2582"
//});

};


