var App = {
  init: function() {
    jQuery(document).ready(function() {
      this.set_body_width();
      jQuery(window).resize(function() {
        this.set_body_width();
      }.bind(this));
    }.bind(this));
  },
  
  set_body_width: function() {
    var width = jQuery(window).width();
    if (width < 960)
      jQuery('body').width("960px");
    else
      jQuery('body').width("");
  },
  
  display_redirect_notice: function() {
    jQuery(document).ready(function() {
      jQuery('.redirected_from').click();
    });
    
  },
  
  Main: {
    Index: {}
  },
  
  Products: {
    PriceCalculator: {
      init: function() {
        jQuery(document).ready(function() {
          jQuery('input.price-calculator-submit').click();
        }.bind(this));
      }
    }
  },
  
  Plans: {
    init: function() {
      jQuery(document).ready(function() {
        jQuery('#respondents').val(1000);
        jQuery('#plans-calculator-submit').click();
        // jQuery('input.price-calculator-submit').click();
      }.bind(this));
    }
  }
};

