var input_postcode = 'Enter your postcode'; $(document).ready(function(){ $('form#directions input.text').val(input_postcode).css('color','#727272'); InputFocusBlur($('form#directions input.text'), input_postcode); function Googlemaps_Initialize() { var myLatlng = new google.maps.LatLng(0,0); var myOptions = { zoom: 15, center: myLatlng, mapTypeId: google.maps.MapTypeId.HYBRID } var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var geocoder = new google.maps.Geocoder(); geocoder.geocode({'address': 'PO3 5RB, Unit 2, Dundas Close, Portsmouth, UK'}, function(results, status) { map.setCenter(results[0].geometry.location); var marker = new google.maps.Marker({ map: map, position: results[0].geometry.location }); }); } Googlemaps_Initialize(); });;