$(document).ready(function () {
// tweet 
	$(".tweet").tweet({
		avatar_size: null,
		count: 1,
		username: "chris_grafik",
		list: "grafik",
		loading_text: "loading tweets..."
	});        
// select text in form input on focus
	$("input[type=text]").focus(function () {
		this.select();
	});
});
