 
	var anext = new Array();
	var rnext = new Array();
	function next_obj(article_id,title,link,date){
		 this.article_id=article_id;
		this.link=link;
		 this.title=title;
		 this.date=date;
	}
	
	function get_next_article_link_embedded(jsID,jsType) {
				var nextList = anext;
		var nextString = '';
		if (jsType=="review") {
			nextList = rnext;
			if (nextList[jsID] == null) {
				nextList = anext;
			}
		}  
		

		if (nextList[jsID] != null) {
			var obj = nextList[jsID];
		
			var link = obj.link;
			var title= obj.title;

			var nextString = '<a href="' + link +'">'+ title +'</a>'
		
		} 
		return nextString
		
		
	}
	
	function get_next_article_link(jsID,jsType) {
		var nextList = anext;
		var nextString = '';
		var defaultName = 'firstIdanext';
		if (jsType=="review") {
			nextList = rnext;
			defaultName = 'firstIdrnext'
			if (nextList[jsID] == null) {
				nextList = anext;
			}
		}  
		

		if (nextList[jsID] != null) {
			var obj = nextList[jsID];
		} else {
			var did = eval(defaultName);
			var obj = nextList[did];
		}
			var link = obj.link;
			var title= obj.title;

			var nextString = '<div class="nextlink"><div class="title" title="Next">Next</div> <div class="link"><a href="' + link +'">'+ title +'</a></div><div style="clear:both;"></div></div>';  return nextString
	}
	

var anext = new Array();
		var firstIdanext = '20050804';
		 anext["20050804"] = new next_obj('20049634','Top Chef','/ew/article/0,,20040769_20041827_20049634,00.html','08/03/2007 10:00AM');
		 anext["20049634"] = new next_obj('20049655','Hell\'s Kitchen','/ew/article/0,,20040769_20041827_20049655,00.html','08/03/2007 10:00AM');
		 anext["20049655"] = new next_obj('20049656','The Company','/ew/article/0,,20040769_20041827_20049656,00.html','08/03/2007 10:00AM');
		 anext["20049656"] = new next_obj('20047914','Damages','/ew/article/0,,20040769_20041827_20047914,00.html','07/24/2007 02:00PM');
		 anext["20047914"] = new next_obj('20046848','Saving Grace','/ew/article/0,,20040769_20041827_20046848,00.html','07/17/2007 01:10PM');
		 anext["20046848"] = new next_obj('20046274','So You Think You Can Dance','/ew/article/0,,20040769_20041827_20046274,00.html','07/13/2007 04:00PM');
		 anext["20046274"] = new next_obj('20046314','Mad Men','/ew/article/0,,20040769_20041827_20046314,00.html','07/13/2007 05:30PM');
		 anext["20046314"] = new next_obj('20043335','Flight of the Conchords','/ew/article/0,,20040769_20041827_20043335,00.html','06/22/2007 10:00AM');
		 anext["20043335"] = new next_obj('20043336','Meadowlands','/ew/article/0,,20040769_20041827_20043336,00.html','06/22/2007 10:00AM');
		 anext["20043336"] = new next_obj('20043337','Burn Notice','/ew/article/0,,20040769_20041827_20043337,00.html','06/22/2007 10:00AM');
		 anext["20043337"] = new next_obj('20042235','Big Love','/ew/article/0,,20040769_20041827_20042235,00.html','06/12/2007 03:35PM');
		 anext["20042235"] = new next_obj('20041318','John From Cincinnati','/ew/article/0,,20040769_20041827_20041318,00.html','06/04/2007 05:00PM');
		 anext["20041318"] = new next_obj('20041319','Rescue Me','/ew/article/0,,20040769_20041827_20041319,00.html','06/04/2007 05:00PM');
		 anext["20041319"] = new next_obj('20039779','Hidden Palms','/ew/article/0,,20040769_20041827_20039779,00.html','05/22/2007 03:00PM');
		 anext["20039779"] = new next_obj('20038863','The Starter Wife','/ew/article/0,,20040769_20041827_20038863,00.html','05/14/2007 05:00PM');
		 anext["20038863"] = new next_obj('20050804','High School Musical 2','/ew/article/0,,20040769_20041827_20050804,00.html','08/10/2007 10:00AM');
		 








