$(document).ready(function() {
  // COLORBOX
  $('.photo a,.mini_photo a,.midi_photo a').colorbox({
    transition: 'fade',
    speed: 500,
    current: "{current} of {total} photos",
    rel: 'gallery'
  });
  $('.video_link a').colorbox({
    transition: 'fade',
    speed: 500,
    href: function (){
      return $(this).attr('href').replace(new RegExp("watch\\?v=", "i"), 'v/')
    },
    width: 640,
    height: 386,
    iframe: true
  });
  // FORM VALIDATION
  $('.quote_form>form').validate({
    rules: {
      name: {
        required: true
      },
      email: {
        required: true,
        email: true
      },
      telephone: {
        required: true
      },
      message: {
        required: true
      }
    }
  });
});

