diff --git a/prototype/index.py b/prototype/index.py
index 2a64cf9..3d11145 100755
--- a/prototype/index.py
+++ b/prototype/index.py
@@ -12,14 +12,19 @@ def main():
head = Web.Element(Web.ROOT_DIR + 'templates/head.html')
body = Web.Element(Web.ROOT_DIR + 'templates/body.html')
jsIncludes = Web.Element(Web.ROOT_DIR + 'templates/jsIncludes.html')
+
mainJs = Web.Element()
mainJs.open_string = ' '
content = Web.Element('index.html')
+ staticPath = Web.Element()
+ staticPath.open_string = ' '
+
page.add_child(head)
page.add_child(body)
body.add_child(content)
body.add_child(jsIncludes)
+ jsIncludes.add_child(staticPath)
jsIncludes.add_child(mainJs)
page.print()
diff --git a/webtools/Web.py b/webtools/Web.py
index c60a750..ab9d11c 100755
--- a/webtools/Web.py
+++ b/webtools/Web.py
@@ -5,7 +5,7 @@ import sys
import os
# ROOT_DIR = '/'.join(__file__.split('/')[:-2]) + '/'
-ROOT_DIR = '/home/thomas/stage/javascript/web/'
+ROOT_DIR = '/home/thomas/stage/javascript/master/'
class Element: