 
	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 = '20240304';
		 anext["20240304"] = new next_obj('20243064','\'Twilight\': Who would you recast?','/ew/article/0,,20152943_20153269_20243064,00.html','11/26/2008 01:00PM');
		 anext["20243064"] = new next_obj('20243109','\'Twilight\': What\'s next?','/ew/article/0,,20152943_20153269_20243109,00.html','11/26/2008 02:35PM');
		 anext["20243109"] = new next_obj('20162480','2007 Entertainer of the Year: J.K. Rowling','/ew/article/0,,20152943_20153269_20162480,00.html','11/26/2007 03:00PM');
		 anext["20162480"] = new next_obj('20161218','The Top 25 Entertainers of 2007','/ew/article/0,,20152943_20153269_20161218,00.html','11/16/2007 05:00PM');
		 anext["20161218"] = new next_obj('20161746','George Clooney on his big year in 2007','/ew/article/0,,20152943_20153269_20161746,00.html','11/20/2007 04:00PM');
		 anext["20161746"] = new next_obj('20161798','FunnyOrDie proves Web comedy is no joke','/ew/article/0,,20152943_20153269_20161798,00.html','11/20/2007 07:45PM');
		 anext["20161798"] = new next_obj('20005734','2006\'s brightest new stars','/ew/gallery/0,,20152943_20153269_20005734,00.html','01/02/2007 03:00PM');
		 anext["20005734"] = new next_obj('1571627','2006\'s Entertainers of the Year','/ew/article/0,,20152943_20153269_1571627,00.html','12/19/2006 04:00PM');
		 anext["1571627"] = new next_obj('20006524','Editors pick: 2006\'s best performances','/ew/article/0,,20152943_20153269_20006524,00.html','12/22/2006 10:00AM');
		 anext["20006524"] = new next_obj('1142678','2005\'s Entertainers of the Year','/ew/article/0,,20152943_20153269_1142678,00.html','12/20/2005 04:00PM');
		 anext["1142678"] = new next_obj('1010337','2004\'s Entertainers of the Year','/ew/article/0,,20152943_20153269_1010337,00.html','12/20/2004 07:00PM');
		 anext["1010337"] = new next_obj('20240304','Robert Downey Jr.: EW\'s No. 1','/ew/article/0,,20152943_20153269_20240304,00.html','11/13/2008 03:00PM');
		 








