// JavaScript Document
    var subdomain = 'papercutindustries';
    $(function() {
      $.getJSON('http://api.bigcartel.com/' + subdomain + '/store.js?callback=?', function(store) {
        $.each(store.categories, function(i, category) {
          $('#categories').append('<li><a href="http://' + 'shop.papercutindustries.com' + category.url + '">' + category.name + '</a></li>');
        });
      });
    });
	
	    $(function() {
      $.getJSON('http://api.bigcartel.com/' + subdomain + '/store.js?callback=?', function(store) {
        $.each(store.pages, function(i, page) {
          $('#help').append('<li><a href="http://' + 'shop.papercutindustries.com/' + page.permalink + '">' + page.name + '</a></li>');
        });
      });
    });
