﻿(function($) {

    $(function () {
        $('.pop-up').click(function () {
            window.open(this, null);
            return false;
        });

        $('.clear-field-on-focus').focus(function () {
            if (this.value == this.defaultValue) { this.value = ''; }
        });

        $('#showreel-modal-box').click(function () {
            return false;
        });

        $('#mailing-list-modal-box').click(function () {
            return false;
        });

        $('.focus-first').focus();

        $('.confirm').click(function() {
          return confirm("Are you sure you want to do this?");
        });
    });
})(jQuery);
