Remember that the bidding and assignment system does not restrict you to one flight at a time and does not need approval before filing a PiRep.
$(document).ready(function() {
// If no cookie with our chosen name (e.g. no_thanks)...
if ($.cookie("flight_assignment_bidding_reminder") == null) {
// Show the modal, with delay func.
$("#biddingReminder").show();
}
// On click of specified class (e.g. spanish_confirm), trigger cookie, with expiration in year 9999
$("#dismissBiddingSystemReminder").click(function() {
$.cookie("flight_assignment_bidding_reminder", "read", { expires: 365 });
});
});