window.onload=function() {
	// Dynamically inserts Carnegie Mellon Wordmark (hidden in CSS unless printed)
	var wordmark = document.createElement("img");
	wordmark.setAttribute("src","/news/images/wordmark-print.gif");
	wordmark.setAttribute("alt","Carnegie Mellon University");
	document.getElementById("wordmark").appendChild(wordmark);
	
	// Dynamically inserts RSS icon into gray bar
	var rss = document.createElement("a");
	rss.setAttribute("title","Carnegie Mellon University's News Feed")
	rss.setAttribute("id","rss");
	rss.setAttribute("href","http://www.cmu.edu/news/feeds/news.rss");
	$("#socialLinks").prepend(rss);
}
