Map

 
#gmap_canvas img{max-width:none!important;background:none!important} www.themehexagon.net
function init_map(){var myOptions = {zoom:5,center:new google.maps.LatLng(-33.827919,151.20233410000003),mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById("gmap_canvas"), myOptions);marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(-33.827919, 151.20233410000003)});infowindow = new google.maps.InfoWindow({content:"Creative Computing
236 Pacific Highway. Crows Nest, Sydney
2065 Australia." });google.maps.event.addListener(marker, "click", function(){infowindow.open(map,marker);});infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);