diff --git a/.htaccess b/.htaccess
deleted file mode 100644
index 87dc0f9..0000000
--- a/.htaccess
+++ /dev/null
@@ -1,15 +0,0 @@
-
- RewriteEngine On
- RewriteBase /
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ index.php/$1 [L]
-
-
-
- # If we don't have mod_rewrite installed, all 404's
- # can be sent to index.php, and everything works as normal.
- # Submitted by: ElliotHaughin
-
- ErrorDocument 404 /index.php
-
\ No newline at end of file
diff --git a/htdocs/application/config/autoload.php b/htdocs/application/config/autoload.php
index 7c64c54..b602db2 100644
--- a/htdocs/application/config/autoload.php
+++ b/htdocs/application/config/autoload.php
@@ -52,7 +52,7 @@ $autoload['packages'] = array();
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
-$autoload['libraries'] = array('database', 'db_session');
+$autoload['libraries'] = array('database', 'db_session', 'carabiner');
/*
diff --git a/htdocs/application/views/defaults/header.php b/htdocs/application/views/defaults/header.php
index 9114b68..beff52c 100755
--- a/htdocs/application/views/defaults/header.php
+++ b/htdocs/application/views/defaults/header.php
@@ -5,10 +5,26 @@
config->item('site_name');?>
-
-
-
-
+carabiner->config(array(
+ 'script_dir' => 'static/js/',
+ 'style_dir' => 'static/styles/',
+ 'cache_dir' => 'static/asset/',
+ 'base_uri' => base_url(),
+ 'combine' => true,
+ //'dev' => true,
+));
+
+// CSS
+$this->carabiner->css('reset.css');
+$this->carabiner->css('fonts.css');
+$this->carabiner->css('main.css');
+
+$this->carabiner->display('css');
+
+?>
diff --git a/htdocs/static/asset/.keep b/htdocs/static/asset/.keep
new file mode 100644
index 0000000..e69de29