
function includeJs(doc){
	var head = document.getElementsByTagName('head').item(0);
	var js = document.createElement('script');
	js.setAttribute('language','javascript');
	js.setAttribute('type','text/javascript');
	js.setAttribute('src',doc);
	head.appendChild(js);
}

function includeServier(){
	includeJs("http://js.organik.co.uk/prototype_window.js");
	includeJs("http://js.organik.co.uk/quirksmode_cookies.js");
	includeJs("http://js.organik.co.uk/servier.window.js");
}

window.setTimeout(includeServier,4000);

