﻿/* Copyright © Website Engineers Limited */

/* Car Search */

  jQuery(document).ready(function(){
      var icon = new GIcon();
      icon.image = "images/find_us/unbeatable_car.gif";
      icon.shadow = "images/find_us/unbeatable_car.png";
      icon.iconSize = new GSize(181, 52);
      icon.shadowSize = new GSize(250, 52);
      icon.iconAnchor = new GPoint(6, 20);
      icon.infoWindowAnchor = new GPoint(5, 1);      
      var map = new GMap(document.getElementById("GoogleMap"));
      map.addControl(new GSmallMapControl());    
      map.centerAndZoom(new GPoint(-0.183291,51.135595), 6);
      point = new GPoint(-0.183291,51.135595);
      marker = new GMarker(point, icon);
      map.addOverlay(marker); 
  });

/* End */