function Item( dt, title, des, link)
{
	document.write("<div id=\"blog_date\">" + dt +
				"</div><a href=\""+link+"\">" + title +
				"</a><div id=\"blog_description\">" + des + "</div>");
}

function Latest(){
	Item("09 Jan 2009", "Alternative Returns", "Alternative style, traditional outcome?","traditional_alternatives.html")
	Item("12 Dec 2008", "<br>Leverage without Liquidity", "The bane of the modern hedge fund","basis.html")
	}

function Old(){
	Item("12 Jul 2008", "Investing in Bigness", "Economy of scale and hedge funds","megafunds.html")
	Item("04 Mar 2008", "Artificial Liquidity", "A trap for hedge fund investors","artificial_liquidity.html")
	Item("27 Jul 2007", "Hedge Fund Replication", "Muggles looking for Hogwarts","muggles.html")
	Item("15 Nov 2006", "Amaranth", "Some things change, some stay the same.","amaranth1.html")
	Item("08 Sep 2006", "CDOs and Hedge Funds", "Comical were it not so serious","cdo1.html")
}

function All(){
	Latest()
	Old()
	document.write("<p style=\"text-align: center\">Subscribe <a href=\"insight_rss.xml\"><img border=\"none\" src=\"rss_icon.png\"></a></p>")
}