// JavaScript Document

function PNIDfeedLoad() {
	
	var feedControl = new google.feeds.FeedControl();
	feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
	
	feedControl.addFeed("http://pipes.yahoo.com/pipes/pipe.run?_id=XG09J20v3hGAyT7FDYSbGg&_render=rss", "What we are reading");
	feedControl.setNumEntries(15);
	// Draw it
	feedControl.draw(document.getElementById("tumblrFeed"));
	
	
	
}
	
google.load("feeds", "1");
google.setOnLoadCallback(PNIDfeedLoad);

function toggleArchive() {
	

	if($("#archivepubs").is(':hidden'))
		$("#archivepubs").fadeIn(300);
		
	else
		$("#archivepubs").fadeOut('fast');
}


