 
	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 = '20249136';
		 anext["20249136"] = new next_obj('20247969','Legacies \'08: Stars pay tribute (extended versions)','/ew/article/0,,20162677_20164082_20247969,00.html','12/19/2008 12:00PM');
		 anext["20247969"] = new next_obj('20244003','Vote! Best movies of \'08?','/ew/article/0,,20162677_20164082_20244003,00.html','12/03/2008 02:00PM');
		 anext["20244003"] = new next_obj('20244015','Vote! The best books of 2008','/ew/article/0,,20162677_20164082_20244015,00.html','12/03/2008 03:25PM');
		 anext["20244015"] = new next_obj('20244030','Vote! Best TV of 2008','/ew/article/0,,20162677_20164082_20244030,00.html','12/03/2008 03:00PM');
		 anext["20244030"] = new next_obj('20244039','Vote! Best games of 2008','/ew/article/0,,20162677_20164082_20244039,00.html','12/03/2008 03:00PM');
		 anext["20244039"] = new next_obj('20244040','Vote! Best of Broadway \'08?','/ew/article/0,,20162677_20164082_20244040,00.html','12/03/2008 03:00PM');
		 anext["20244040"] = new next_obj('20244042','Vote! Best music of 2008','/ew/article/0,,20162677_20164082_20244042,00.html','12/03/2008 04:05PM');
		 anext["20244042"] = new next_obj('20249136','2008: This was the year that...','/ew/article/0,,20162677_20164082_20249136,00.html','12/27/2008 12:00AM');
		 








