 
	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 = '20033259';
		 anext["20033259"] = new next_obj('20035208','Photo Quiz: For all you reality TV addicts...','/ew/article/0,,20016362_20185027_20035208,00.html','04/16/2007 06:00PM');
		 anext["20035208"] = new next_obj('20033552','Name that TV show!','/ew/article/0,,20016362_20185027_20033552,00.html','04/03/2007 05:00PM');
		 anext["20033552"] = new next_obj('20033702','Photo Quiz: Name That Mustache!','/ew/article/0,,20016362_20185027_20033702,00.html','04/04/2007 04:00PM');
		 anext["20033702"] = new next_obj('20033841','Read these quotes... and name that Idol!','/ew/article/0,,20016362_20185027_20033841,00.html','04/05/2007 04:55PM');
		 anext["20033841"] = new next_obj('20152551','Name that movie prop','/ew/article/0,,20016362_20185027_20152551,00.html','10/15/2007 07:00PM');
		 anext["20152551"] = new next_obj('20169454','What\'s your awards-show IQ?','/ew/article/0,,20016362_20185027_20169454,00.html','01/04/2008 02:00PM');
		 anext["20169454"] = new next_obj('20016359','Name that hair-metal band!','/ew/article/0,,20016362_20185027_20016359,00.html','03/29/2007 04:00PM');
		 anext["20016359"] = new next_obj('20034590','Who wore that Oscar gown?','/ew/article/0,,20016362_20185027_20034590,00.html','04/11/2007 08:00PM');
		 anext["20034590"] = new next_obj('20050142','Name that boy band!','/ew/article/0,,20016362_20185027_20050142,00.html','08/06/2007 01:00PM');
		 anext["20050142"] = new next_obj('20188487','Pop Quiz! Test your TV smarts','/ew/article/0,,20016362_20185027_20188487,00.html','04/03/2008 05:00PM');
		 anext["20188487"] = new next_obj('20188487','Pop Quiz! Test your TV smarts','/ew/article/0,,20016362_20185027_20188487,00.html','04/03/2008 05:00PM');
		 anext["20188487"] = new next_obj('20033259','How well do you know Harry Potter?','/ew/article/0,,20016362_20185027_20033259,00.html','03/31/2007 01:00AM');
		 








