var paypal_state_codes = {  "NJ": "9TPFR5H69LVB2", 
                            "NY": "9R8LFJSARZZK4", 
                            "IL": "UXH5V9M8CDVY8", 
                            "MA": "ZDCUZWHSRAKAQ", 
                            "GA": "FGH6TMETSLY2L" };

$(document).ready(function() {

  //setup fancy box for the paypal popup
  $("a#paypal-link").fancybox();

/*
  //start the slide show - http://nivo.dev7studios.com/support/jquery-plugin-usage/
  $('#slider').nivoSlider({
      pauseTime: 10000 // How long each slide will show
  });
*/

  //update the paypal button based on the state chosen
  $('#charity').change(function() {
    var state = $(this).val();
    $('#paypal-chapter-code').val(paypal_state_codes[state]);
  });

});

