 
	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 = '20183915';
		 anext["20183915"] = new next_obj('20183556','A very \'Tiny\' SXSW','/ew/article/0,,20181759_20181922_20183556,00.html','03/11/2008 06:15PM');
		 anext["20183556"] = new next_obj('20183566','South by Southwest preview','/ew/article/0,,20181759_20181922_20183566,00.html','03/11/2008 06:00PM');
		 anext["20183566"] = new next_obj('1038710','Spoon\'s Britt Daniel: My guide to Austin','/ew/article/0,,20181759_20181922_1038710,00.html','03/17/2005 01:00AM');
		 anext["1038710"] = new next_obj('20171862','Behind the music of \'\'Juno\'\'','/ew/article/0,,20181759_20181922_20171862,00.html','01/15/2008 03:50PM');
		 anext["20171862"] = new next_obj('20038813','Our extended chat with Amy Winehouse','/ew/article/0,,20181759_20181922_20038813,00.html','05/14/2007 12:00PM');
		 anext["20038813"] = new next_obj('20052296','Talib Kweli: Getting inside his \'\'Eardrum\'\'','/ew/article/0,,20181759_20181922_20052296,00.html','08/17/2007 10:00AM');
		 anext["20052296"] = new next_obj('20015376','An Englishman in Austin: A SXSW report','/ew/article/0,,20181759_20181922_20015376,00.html','03/19/2007 04:00PM');
		 anext["20015376"] = new next_obj('1199272','A chat with Wolfmother\'s frontman','/ew/article/0,,20181759_20181922_1199272,00.html','05/30/2006 05:00PM');
		 anext["1199272"] = new next_obj('1174154','Five Rounds with James Blunt','/ew/article/0,,20181759_20181922_1174154,00.html','03/17/2006 10:00AM');
		 anext["1174154"] = new next_obj('20183915','SXSW Daily Mixtape: R.E.M., Stones Throw showcase','/ew/article/0,,20181759_20181922_20183915,00.html','03/13/2008 07:00AM');
		 








