function loadScript(scriptLocation) {
	var scriptTag = document.createElement('script');
	scriptTag.type = 'text/javascript';
	scriptTag.async = true;
	scriptTag.src = scriptLocation;
	var s = document.getElementsByTagName('script')[0];
	s.parentNode.insertBefore(scriptTag, s);
}
