$(function() {
$.getJSON('http://twitter.com/statuses/user_timeline/prwua.json?callback=?',{ id: "prwua", count: 1 },function(data) {
var twt = data[0].text;
if(twt) {
	if(twt.match(/#PRWUAAlerts/i)) {
		var replace = '<span class="prwuaalerts"><a target="_blank" href="http://twitter.com/search?q=%23PRWUAalerts">#PRWUAalerts</a></span>';
		twt = twt.replace(/#PRWUAAlerts/i, replace);
		$('#twitter_title').html('<div id="alertheader"><div id="alerticon"></div><h2>PRWUA ALERT</h2></div><br />');
	}
} else {
	twt = "Twitter is experiencing some technical difficulties. Please view our Twitter feed at <a href=\"http://twitter.com/prwua\">http://twitter.com/prwua</a>.";
}
	$('#twitter_update_list').html(twt);
	$('#twitter_homepage_update_list').html(twt);

});
});
