Move timerID to pit entry; implement basic pipeline code
diff --git a/js/NDN.js b/js/NDN.js
index 31e4cd0..0410425 100644
--- a/js/NDN.js
+++ b/js/NDN.js
@@ -81,6 +81,7 @@
 var PITEntry = function PITEntry(interest, closure) {
 	this.interest = interest;  // Interest
 	this.closure = closure;    // Closure
+	this.timerID = -1;  // Timer ID
 };
 
 // Return the longest entry from NDN.PITTable that matches name.