// JavaScript Document
function NewsItem(title, content, expiration)
{
	this.title = title;
	this.content = content;
	this.expiration = expiration;
	
	this.getHTML = function() {
		var html = "";
		var now = new Date();
		if (!expiration || expiration > now)
		{
			html = "<div class=\"newssection\">";
		
			if(this.title.length > 0)
			{
				html += "<span style=\"font-size:125%;font-weight:bold;\">" + this.title + "</span><br />";
			}
			if(this.content.length > 0)
			{
				html += content;
			}
			
			html += "</div>\n";
		}
				
		return html;
	}
}

var currentNews = [new NewsItem('Little Women at the Shaw Mansion','Due to popular demand, Flock Theatre once again presents their heartwarming new adaptation of Louisa May Alcott&#39;s beloved family classic &quot;Little Women&quot; at New London&#39;s historic Shaw Mansion January 3-15. Seating in this intimate historic setting is limited to 30 people per performance and tickets sell out quickly; reservations are strongly encouraged.<br /><a href="show_info.php?showName=little_women">Click Here for Details</a>', new Date(2012,0,15,22,0,0,0))];
				   
/*				   
var currentNews = [new NewsItem('Dinner Fundraiser:<br />Kick off to a Summer of Shakespeare in the Arboretum','A jolly breaking of bread and a drumstick or two and the sipping of wine on stage at the Arbo with fellow Shakespeare enthusiasts!  Come, mingle with King Lear and his daughters. A dinner fundraiser to support the production of King Lear at the Conn College Arboretum!<br /><div style="margin-top:5px">For more info: <a href="show_info.php?showName=dinner_fundraiser">Click Here</a></div>', new Date(2011,6,16,21,0,0,0)),
				   new NewsItem('Advertise with Flock','We are currently accepting advertising payments through PayPal! Please click the advertising link below for more information and the ability to submit and pay online. You can also access this page under the &quot;Support Us&quot; menu.<br /><a href="advertising.html">Advertise With Flock</a>')];
				   */
