/* TV Grid: http://tvlistings.zap2it.com/tvlistings/ZCGrid.do?aid=people&cid=tvl */
PEOPLE.TVListings = {
	latesttvnews : function(obj) {
		var o = obj.post,
			h = '<p class="header"><a href="http://tvwatch.people.com/" title="Visit TVWatch for the latest TV News">Latest TV News</a></p>',
			i, len = o.length;
		h += '<ol>';
		for (i = -1; ++i < len;) {h += '<li><a href="'+o[i].link+'">'+o[i].title+'</a></li>';}
		h += '</ol>';
		h += '<p class="more"><a href="http://tvwatch.people.com/" title="Visit TVWatch for the more TV News">Read More News</a></p>';
		$('#latestNews').html(h).addClass('active');
	},
	rightcolumntouts : function(obj) {
		var o = obj.touts;
		$('#photosMore').html(o[0].html).addClass('active');
		$('#dontMiss').html(o[1].html).addClass('active');
	},
	init : function() {
		if ($('#photosMore').length > 0 && $('#dontMiss').length > 0) {
			$.getScript('http://www.people.com/people/component/tvwatch/zap2it/0,,,00.js');
		}
		if ($('#latestNews').length > 0) {
			$.getScript('http://www.people.com/people/component/tvwatch/json/latestnews/1,,,00.js');
		}
	}
};
tii_callFunctionOnWindowLoad(PEOPLE.TVListings.init);

