
// due to caching, we have to make this an ajax call on page load
$(document).ready(function(){
    var carturl = '/cart/total/';
    $.get(carturl, function(data) {
        $('span#cart_item_count').html(data);
    });
});

