function ContentItem(type,position,id,url,popup,kicker,headline,subheadline,blurb,source,byline,postpage,pubdate,thumbnail)
{
	this.type = type ;
	this.position = position ;
	this.id = id ;
	this.url = url ;
	this.popup = popup ;
	this.kicker = kicker ;
	this.headline = headline ;
	this.subheadline = subheadline ;
	this.blurb = blurb ;
	this.source = source ;
	this.byline = byline ;
	this.postpage = postpage ;
	this.pubdate = pubdate ;
	this.thumbnail = thumbnail ;
}

function IsPopup(is_popup,width,height)
{
	this.is_popup = is_popup ;
	this.width = width ;
	this.height = height ;
}

function Thumbnail(url,width,height,alt)
{
	this.url = url ;
	this.width = width ;
	this.height = height ;
	this.alt = alt ;
}