Initial Import
diff --git a/system/init/init_parser.php b/system/init/init_parser.php
new file mode 100644
index 0000000..17824b5
--- /dev/null
+++ b/system/init/init_parser.php
@@ -0,0 +1,19 @@
+<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
+
+/**
+ * Loads and instantiates parser class
+ *
+ * @access private called by the app controller
+ */
+
+if ( ! class_exists('CI_Parser'))
+{
+ require_once(BASEPATH.'libraries/Parser'.EXT);
+}
+
+$obj =& get_instance();
+$obj->parser = new CI_Parser();
+$obj->ci_is_loaded[] = 'parser';
+
+
+?>
\ No newline at end of file