 
	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 = '20046328';
		 anext["20046328"] = new next_obj('20042447','Meet Cary Brothers (and no, he\'s not a band)','/ew/article/0,,20047186_20047208_20042447,00.html','06/13/2007 05:00PM');
		 anext["20042447"] = new next_obj('20042340','\'\'Sopranos\'\' finale has Perry \'\'Believin\'\'\' in Chase','/ew/article/0,,20047186_20047208_20042340,00.html','06/13/2007 09:00AM');
		 anext["20042340"] = new next_obj('1212063','Owen Gleiberman on the consummate soundtrack artist','/ew/article/0,,20047186_20047208_1212063,00.html','07/10/2006 04:00PM');
		 anext["1212063"] = new next_obj('20046643','Enrique Iglesias: On stage in Syria','/ew/article/0,,20047186_20047208_20046643,00.html','07/16/2007 04:00PM');
		 anext["20046643"] = new next_obj('20043298','Rihanna on embracing her \'\'Bad\'\' side','/ew/article/0,,20047186_20047208_20043298,00.html','06/21/2007 01:00PM');
		 anext["20043298"] = new next_obj('20038972','How Michel Gondry earned his music-video Stripes','/ew/article/0,,20047186_20047208_20038972,00.html','05/15/2007 03:15PM');
		 anext["20038972"] = new next_obj('631305','Do lyrics matter? Music critics square off','/ew/article/0,,20047186_20047208_631305,00.html','04/29/2004 06:00PM');
		 anext["631305"] = new next_obj('20046328','A chat with Decemberist Colin Meloy','/ew/article/0,,20047186_20047208_20046328,00.html','07/13/2007 07:00PM');
		 








