Remove unused JS

Change-Id: I088ec57d0f6f6f9f8f23fa725b4a8fe7e6f5f6f5
diff --git a/js/counter.js b/js/counter.js
deleted file mode 100644
index 38d2ae0..0000000
--- a/js/counter.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/* $('.counter').counterUp({
-          
-        }); */
-$('.counter').each(function() {
-  var $this = $(this),
-      countTo = $this.attr('data-count');
-  
-  $({ countNum: $this.text()}).animate({
-    countNum: countTo
-  },
-
-  {
-
-    duration: 3000,
-    easing:'linear',
-    step: function() {
-      $this.text(Math.floor(this.countNum));
-    },
-    complete: function() {
-      $this.text(this.countNum);
-      //alert('finished');
-    }
-
-  });  
-  
-  
-
-});
\ No newline at end of file