function init() {
	//the dropdown containers (view details)
	$("a.view_details").click(show_hide);
	
}

function show_hide() {
	var t = $(this);
	
	if(!t.is(".hide_details")) {
		t.addClass("hide_details");
		t.text("Hide Details");		
		t.prevAll("div.text_container:first").fadeIn(1000);
	}
	else {
		t.removeClass("hide_details");
		if($("div#page").is(".news"))
			t.text("Read the full article");	
		else
			t.text("View Details");
		t.prevAll("div.text_container:first").slideUp(500);
	}	
}