
	function thread(threadid, title, postuserid, poster, threaddate, threadtime, message, replies)
	{
		this.threadid = threadid;
		this.title = title;
		this.postuserid = postuserid;
		this.poster = poster;
		this.threaddate = threaddate;
		this.threadtime = threadtime;
		this.message = message;
		this.replies = replies;
		
	}
	var threads = new Array(1);
	threads[0] = new thread(181613, 'Parade', '13614', 'rock_show_host', '10-27-2009', '12:57 AM', 'Anyone else heard of this musical?  It had a pretty short run on Broadway and isn\'t produced too often, so it\'s not as well known as some of its contemporaries, but it\'s a fantastic show.  The plot centers around a Jewish man from Brooklyn living in Georgia, who\'s wrongfully accused of the murder of a girl who worked in his factory.  It\'s extremely heavy, which may partially account for its smaller audience, but the story, music and characters are incredibly well-done.  It\'s a complex telling of a disturbing story that allows the audience to empathize with characters on both sides.  And the score is great overall, with some wonderful stand-out songs -' + '- particularly a ballad duet called All The Wasted Time, which is still one of my favorite Broadway songs ever.', '0');
