function twitter_me() {
var twitter_JSON = document.createElement("script");
twitter_JSON.type="text/javascript"
//twitter_JSON.src="http://twitter.com/statuses/user_timeline/CricNews.json?callback=twitter_callback&count=2"
twitter_JSON.src="http://twitter.com/statuses/user_timeline/horspathcricket.json?callback=twitter_callback&count=3"
document.getElementsByTagName("head")[0].appendChild(twitter_JSON);
}
function twitter_callback(twit) {
	var t_div = document.getElementById("twittercontent");
	var who,what,when,icon, bgcolor
	t_div.innerHTML = "<ul>"
		for (i=0;i<twit.length;i++) {
		if(i % 2) {
			bgcolor=""
		} else {
			bgcolor=""
		}
			//icon=twit[i].user.profile_image_url;
			who=twit[i].user.name;
			what=twit[i].text;
		 	when=twit[i].created_at.substr(0,19);
			t_div.innerHTML +="<li style='background:"+bgcolor+" url("+icon+") no-repeat'><strong>"+who+"</strong><br /> "+what+" <br /> <em>("+when+" GMT)</em> </li>"
		}
		t_div.innerHTML += "</ul>"
}