//Common Javascript to all Users

function include(filename) {
        var head = document.getElementsByTagName('head')[0];
        script = document.createElement('script');
        script.src = filename;
        script.type = 'text/javascript';
        head.appendChild(script);
}

include('http://' + location.host + '/js/functions.js');
include('http://' + location.host + '/js/basics.js');
include('http://' + location.host + '/js/jquery.scrollTo-1.4.2-min.js');

