jQuery.noConflict();

(function($) {
  $(document).ready(function($) {
    var selector = $('#contact_type');
    var termAndConditions = $('#terms_and_conditions');
    if(selector && termAndConditions) {

      if(selector.val() == "make_a_booking") {
        termAndConditions.show();
      } else {
        termAndConditions.hide();
      }
    
      selector.change(function(e) {
        if($(e.target).val() == "make_a_booking") {
          termAndConditions.show();
        } else {
          termAndConditions.hide();
        }
      });
    }

    $('a.new_window').click(function(e) {
      e.preventDefault();
      window.open(e.target.href, null);
    });
  });
}(jQuery));
