 
	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 = '20159475';
		 anext["20159475"] = new next_obj('20161530','8 Thanksgivings at the movies','/ew/article/0,,20161568_20161572_20161530,00.html','11/19/2007 06:00PM');
		 anext["20161530"] = new next_obj('1128489','Behold EW\'s top 30 sports movies on DVD','/ew/article/0,,20161568_20161572_1128489,00.html','11/11/2005 10:00AM');
		 anext["1128489"] = new next_obj('20049041','25 best movie tearjerkers ever','/ew/article/0,,20161568_20161572_20049041,00.html','12/04/2008 05:00PM');
		 anext["20049041"] = new next_obj('20056134','Reconsidering Friedkin\'s \'\'Cruising\'\'','/ew/article/0,,20161568_20161572_20056134,00.html','09/12/2007 11:25AM');
		 anext["20056134"] = new next_obj('20042607','The 25 greatest action movies of all time!','/ew/article/0,,20161568_20161572_20042607,00.html','06/14/2007 03:00PM');
		 anext["20042607"] = new next_obj('1560072','Countdown: Ranking the Bond films','/ew/article/0,,20161568_20161572_1560072,00.html','11/15/2006 10:00PM');
		 anext["1560072"] = new next_obj('783552','The TV shows on DVD you need to own','/ew/article/0,,20161568_20161572_783552,00.html','11/16/2004 03:00PM');
		 anext["783552"] = new next_obj('20052797','Too much good TV on DVD, too little time!','/ew/article/0,,20161568_20161572_20052797,00.html','08/21/2007 06:00PM');
		 anext["20052797"] = new next_obj('20043483','Lucille Ball on DVD','/ew/article/0,,20161568_20161572_20043483,00.html','06/22/2007 12:00PM');
		 anext["20043483"] = new next_obj('20159475','TV on DVD: a gift guide!','/ew/article/0,,20161568_20161572_20159475,00.html','11/09/2007 05:00PM');
		 








