 
	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 = '20232260';
		 anext["20232260"] = new next_obj('20153543','John Carpenter talks modern horror','/ew/article/0,,20085059_20086059_20153543,00.html','10/22/2007 03:00PM');
		 anext["20153543"] = new next_obj('20153120','\'\'Young Frankenstein\'\' crew\'s favorite frights','/ew/article/0,,20085059_20086059_20153120,00.html','10/18/2007 05:05PM');
		 anext["20153120"] = new next_obj('20147812','Horror movies at the kiddie matinee?','/ew/article/0,,20085059_20086059_20147812,00.html','10/04/2007 06:00PM');
		 anext["20147812"] = new next_obj('20144915','\'\'Friday the 13th\'\': Jason\'s not dead yet','/ew/article/0,,20085059_20086059_20144915,00.html','10/05/2007 10:00AM');
		 anext["20144915"] = new next_obj('20054657','No \'\'Halloween\'\' sequels for Zombie','/ew/article/0,,20085059_20086059_20054657,00.html','09/04/2007 07:00PM');
		 anext["20054657"] = new next_obj('1123807','\'Dead\' ringers: The zombie files','/ew/article/0,,20085059_20086059_1123807,00.html','02/15/2008 11:50AM');
		 anext["1123807"] = new next_obj('20011017','Steel Cage! Your Halloween favorites...','/ew/article/0,,20085059_20086059_20011017,00.html','02/06/2007 04:00PM');
		 anext["20011017"] = new next_obj('734580','Chucky cheese! We rate the \'\'Child\'s Play\'\' movies','/ew/article/0,,20085059_20086059_734580,00.html','10/26/2004 04:00PM');
		 anext["734580"] = new next_obj('20049578','Interview with vampire writer Stephenie Meyer','/ew/article/0,,20085059_20086059_20049578,00.html','08/02/2007 01:10PM');
		 anext["20049578"] = new next_obj('1551879','An unexpected treat at the bottom of the Halloween heap','/ew/article/0,,20085059_20086059_1551879,00.html','10/27/2006 05:00PM');
		 anext["1551879"] = new next_obj('20232260','Zombie movies: Take our quiz!','/ew/article/0,,20085059_20086059_20232260,00.html','10/09/2008 06:00PM');
		 








