 
	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 = '20016392';
		 anext["20016392"] = new next_obj('20009043','Artist\'s Choice: Jewel','/ew/article/0,,20047186_20047207_20009043,00.html','01/19/2007 10:00AM');
		 anext["20009043"] = new next_obj('784498','Kurtis Blow\'s favorite old-school hip-hop songs','/ew/article/0,,20047186_20047207_784498,00.html','11/18/2004 11:00AM');
		 anext["784498"] = new next_obj('1198458','Denis Leary’s five favorite songs','/ew/article/0,,20047186_20047207_1198458,00.html','05/26/2006 10:00AM');
		 anext["1198458"] = new next_obj('708813','Audioslave\'s Tom Morello: My 5 favorite protest songs','/ew/article/0,,20047186_20047207_708813,00.html','10/01/2004 04:50PM');
		 anext["708813"] = new next_obj('20016392','Master Shake\'s all-time worst tacks','/ew/article/0,,20047186_20047207_20016392,00.html','03/30/2007 10:00AM');
		 








