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