﻿// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ForeSeeControl.js" company="Wellpoint">
//   Copyright (c) Wellpoint Inc.  All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

// Global variable used by the ForeSee JavaScript code
var foresee_so = "true";

(function($) {

  // Handles the event that is raised when the page is loaded.
  // Gets the values of the variables used by the ForeSee code from the relevant hidden fields.
  $(document).ready(function() {
    if (FSR && FSR.CPPS) {
      FSR.CPPS.set("brand", $(".foreSeeSite", $("#ForeSeeControlHiddenFields")).val());
      FSR.CPPS.set("market", $(".foreSeeMarket", $("#ForeSeeControlHiddenFields")).val());
      FSR.CPPS.set("state", $(".foreSeeState", $("#ForeSeeControlHiddenFields")).val());
    }
  });

})(jQuery);

