﻿$(function() {
  $("#rotation").cycle("fade");
  $("a[rel^=lightbox").slimbox({
      loop : false,
      counterText : false
  });
});

$.fn.googleMap = function(address, options) {
  var defaults = {
    lat: 50.824603,
    long: -0.583584,
    zoom: 11,
    mapTypeId: google.maps.MapTypeId.ROADMAP
    //      mapTypeId: google.maps.MapTypeId.SATELLITE
    //      mapTypeId: google.maps.MapTypeId.HYBRID
    //      mapTypeId: google.maps.MapTypeId.TERRAIN
  };
  options = $.extend(defaults, options || {});
  var center = new google.maps.LatLng(options.lat, options.long);
  var map = new google.maps.Map(this.get(0), $.extend(options, { center: center }));
  var geocoder = new google.maps.Geocoder();
  geocoder.geocode({ address: address }, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK && results.length) {
      if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {
        //map.set_center(results[0].geometry.location);
        var marker = new google.maps.Marker({
          position: results[0].geometry.location,
          map: map
        });

      }
    }
  });
};

// DOM READY:
$(document).ready(function() {  
$("div[class*='hide']").hide();
$("a[rel*='external']").each(function() { this.target = "_blank"; });  // Sets all <a> elements' target _blank for rel external.

if ($("div#googleMap").length) { $("div#googleMap").googleMap("Unit 11 Ford Lane Business Park, Ford, Arundel, West Sussex, BN18 0UZ"); }
});

