var counterUri = 'http://www.splashpress.com/twittercount/';
function IncludeJavaScript(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';
	
	head.appendChild(script)
}

function IncludeStyle(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	link = document.createElement('link');
	link.rel = 'stylesheet';
	link.href = filename;
	link.type = 'text/css';
	
	head.appendChild(link)
}

IncludeJavaScript('http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js');

IncludeJavaScript(counterUri + 'jquery.gettwittercounter.js');
