// (c) Copyright 2010 - 2011, Third Iris Corp, Inc.  All rights reserved.
// //
// // Common functions for settings pages
// //
// // Requires:
// //  - jquery 1.4
// //
// /*global $ window */
//
(function( $ ){
  $.cartInfoUpdate = function(data) {
    var el = data.cart_is_empty ? '.user_status_buynow' : '.user_status_cart';
    $(el).css('display', 'block');
  };
 
  $.cartInfoSetup = function() {
    var path = '/cart-status.json';
    path += '?_' + new Date().getTime();

    $.getJSON(path, function(data){
      $.cartInfoUpdate(data);
    });
  };
})( jQuery );

$('document').ready(function(ev){
    $.cartInfoSetup();
});


