$(document).ready(function () {
				$("#resultsContainer").ajaxStart(function () {
				    $(this).html("Your Twitter Reader is loading...");
				});

				$.getJSON('http://tools.statuspeople.com/Pie/API/jQuery/tweetreader.php?callback=?',
				{
                    ah:acch
                }, function (data) {
				    $("#resultsContainer").html(data.reader);
				});
});
