 
	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 = '20058108';
		 anext["20058108"] = new next_obj('20058120','Lisa Schwarzbaum on the best of Toronto','/ew/article/0,,20054213_20054215_20058120,00.html','09/21/2007 12:00PM');
		 anext["20058120"] = new next_obj('20057160','Alison Eastwood weepie wraps fest','/ew/article/0,,20054213_20054215_20057160,00.html','09/15/2007 10:20AM');
		 anext["20057160"] = new next_obj('20057364','Ethan Hawke: \'\'People never hesitate to tell me I\'m an a--hole\'\'','/ew/article/0,,20054213_20054215_20057364,00.html','09/17/2007 01:00PM');
		 anext["20057364"] = new next_obj('20056993','Ryan Gosling on acting opposite a sex toy','/ew/article/0,,20054213_20054215_20056993,00.html','09/14/2007 10:00AM');
		 anext["20056993"] = new next_obj('20056706','Eddie Vedder on his solo soundtrack work','/ew/article/0,,20054213_20054215_20056706,00.html','09/13/2007 06:00PM');
		 anext["20056706"] = new next_obj('20056357','Talkin\' trash with \'\'Juno\'\' stars Garner and Bateman','/ew/article/0,,20054213_20054215_20056357,00.html','09/12/2007 08:00PM');
		 anext["20056357"] = new next_obj('20056379','Blanchett\'s Dylan stirs Oscar buzz','/ew/article/0,,20054213_20054215_20056379,00.html','09/13/2007 06:00AM');
		 anext["20056379"] = new next_obj('20056110','Keira Knightley on life after \'\'Pirates\'\'','/ew/article/0,,20054213_20054215_20056110,00.html','09/12/2007 10:00AM');
		 anext["20056110"] = new next_obj('20056084','Reaction mixed to Allen\'s \'\'Cassandra\'\'','/ew/article/0,,20054213_20054215_20056084,00.html','09/12/2007 06:00AM');
		 anext["20056084"] = new next_obj('20055688','Cate Blanchett dishes on \'\'Elizabeth,\'\' \'\'Indy\'\'','/ew/article/0,,20054213_20054215_20055688,00.html','09/10/2007 04:00PM');
		 anext["20055688"] = new next_obj('20056113','McGregor, Vedder, and Donahue hit the fest','/ew/article/0,,20054213_20054215_20056113,00.html','09/12/2007 10:00AM');
		 anext["20056113"] = new next_obj('20055710','Helen Hunt on her new \'\'Found\'\' glory','/ew/article/0,,20054213_20054215_20055710,00.html','09/10/2007 05:15PM');
		 anext["20055710"] = new next_obj('20055437','Jake Gyllenhaal talks \'\'Rendition\'\'','/ew/article/0,,20054213_20054215_20055437,00.html','09/07/2007 08:00PM');
		 anext["20055437"] = new next_obj('20055252','Canada\'s Hollywood invasion begins','/ew/article/0,,20054213_20054215_20055252,00.html','09/07/2007 06:20AM');
		 anext["20055252"] = new next_obj('20054414','Toronto Fest: Six films seeking an Oscar boost','/ew/article/0,,20054213_20054215_20054414,00.html','08/31/2007 05:00PM');
		 anext["20054414"] = new next_obj('20058108','Owen Gleiberman on his Toronto obsessions','/ew/article/0,,20054213_20054215_20058108,00.html','09/21/2007 12:00PM');
		 








