function include(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';
	
	head.appendChild(script)
};
function includeCSS(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	css = document.createElement('link');
	css.href = filename; 
	css.type = 'text/css';
	css.rel="stylesheet";
	
	head.appendChild(css)
};

include('lib/jquery.js');
includeCSS('lib/style.css');
include('lib/jquery.simplemodal.js');
include('lib/jquery.super.js');
