function init() {
	//the dropdown containers (view details)
	$("a.view_details").click(show_hide);
	//demo btn
	$("#demo").bind("click", function() {
		$("#TB_window").css({ width:693 });
		$("#TB_ajaxContent").css({ width:693 });
	});
	
}

function show_hide() {
	if(!$(this).is(".hide_details")) {
		$(this).addClass("hide_details");
		$(this).text("Hide Details");		
		$(this).prev("div.text_container").fadeIn(1000);
	}
	else {
		$(this).removeClass("hide_details");
		if($("div#page").is(".news"))
			$(this).text("Read the full article");
		else if($("div#page").is(".news"))
			$(this).text("View Answer");
		else
			$(this).text("View Details");
		$(this).prev("div.text_container").slideUp(1000);
	}	
}