// see http://simonwillison.net/2004/May/26/addLoadEvent/
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
addLoadEvent(function() {
document.getElementById('rssHolder').innerHTML = '
Like Snow\
by Ted SlaterFor some reason, I just love snow. Makes me feel cozy. MORE\
I\'m Here: New Orleans, Louisiana\
by Boundless CommunityTo New Orleanians, the Saints aren\'t just a team who came from behind after 42 years of losses. They are a symbol of hope after a terrible time of suffering and a uniting force in a economically and racially divided city. MORE\
Super Bowl Thoughts III\
by Tom NevenI guess I\'m going to turn this into an annual tradition, writing about the Super Bowl. I\'m even getting all pretentious about it and marking them with Roman numerals, just as the NFL does. So sue me. MORE\
';
});