$(document).ready(function() {
  // COLORBOX
  $('a[rel=testimonials]').colorbox({
    transition: 'fade',
    speed: 500,
    current: "{current} of {total} customer letters"
  });
  
  // FORM VALIDATION
  $('form').validate({
    rules: {
      name: {
        required: true
      },
      email: {
        required: true,
        email: true
      },
      message: {
        required: true
      }
    },
    success: function(label) {
      label.text('OK!').addClass('valid');
    }
  });
  
  if (document.getElementById("map_canvas")) {
    // GOOGLE MAPS
    var latlng = new google.maps.LatLng(51.259959,-0.565777);
    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);
  
    var companyPos = new google.maps.LatLng(51.259959,-0.565777);
    var companyMarker = new google.maps.Marker({
      position: companyPos,
      map: map,
      title:"Water Softener Services"
    });
  };
});

