//	Babies
	MasterArray.length = 0;
//	initialize recirc feeds; used on Main and Category pages
	var initializeFeeds = function() {
		if (!document.getElementById) return;
		if (!document.getElementsByTagName) return;
		var recircArray = {
			'recircs' : [
				{ // new recirc feed calls
					'id'		: 'col2',
					'feed' 		: [
						{
							'name'  	: 'Huffington Post',
							'json' 		: 'http://img2-short.timeinc.net/people/static/json/huffingtonpost/feed.js',
							'site' 		: 'http://www.huffingtonpost.com/entertainment/',
							'image' 	: 'http://img2.timeinc.net/people/static/i/misc/logoHuffingtonPost.gif',
							'callback'	: PEOPLE.recirccallback,
							'display'	: 3
						},{
							'name'  	: 'TotalBeauty.com',
							'json' 		: 'http://img2-short.timeinc.net/people/static/json/totalbeauty/feed.js',
							'site' 		: 'http://www.totalbeauty.com',
							'image' 	: 'http://img2.timeinc.net/people/static/i/misc/logoTotalBeauty.gif',
							'callback'	: PEOPLE.recirccallback,
							'display'	: 3
						}
					]
				},{
					'id'		: 'col4',
					'feed' 		: [
						{
							'name'  	: 'InStyle.com',
							'json' 		: 'http://img2-short.timeinc.net/people/static/json/instyle_whatsrightnow/feed.js',
							'site' 		: 'http://www.instyle.com',
							'image' 	: 'http://img2.timeinc.net/people/static/i/misc/logoInStyle.gif',
							'callback'	: PEOPLE.recirccallback,
							'display'	: 3
						}
					]
				},{
					'id'		: 'rightcolumnrecirc',
					'feed' 		: [
						{
							'name'  	: 'Mom Finds',
							'json' 		: 'http://img2-short.timeinc.net/people/static/json/momsfinds/feed.js',
							'site' 		: 'http://www.momfinds.com',
							'image' 	: 'http://img2.timeinc.net/people/static/i/babies/header_momfinds2_8.png',
							'callback'	: PEOPLE.recirccallback,
							'display'	: 3
						}
					]
				},{
					'id'		: 'rightcolumnrecircbottom',
					'feed' 		: [
						{
							'name'  	: 'PopSugar.com',
							'json' 		: 'http://img2-short.timeinc.net/people/static/json/popsugar/feed.js',
							'site' 		: 'http://www.popsugar.com',
							'image' 	: 'http://img2.timeinc.net/people/static/i/news/logoPopSugar.gif',
							'callback'	: PEOPLE.recirccallback,
							'display'	: 3
						}
					]
				}
			]
		};
		pushToMasterArray(recircArray);
	};
	initializeFeeds();
// Babies JS
PEOPLE.Babies = {
	init : function() {
		$('#main').addClass('js');
		if ($('#rightcolumnrecirc').length){$('#rightcolumnrecirc').prepend('\n<p class="title">Around the Web</p>');};
	}
};
$(function(){PEOPLE.Babies.init();});
