 
	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 = '20049609';
		 anext["20049609"] = new next_obj('20047232','Ben Harper gets a little funky','/ew/article/0,,20047186_20047193_20047232,00.html','07/19/2007 03:15PM');
		 anext["20047232"] = new next_obj('20046058','Nas spices up new Posh single','/ew/article/0,,20047186_20047193_20046058,00.html','07/12/2007 05:00PM');
		 anext["20046058"] = new next_obj('20042485','A bonus track from Shortlist Prize winner Cat Power','/ew/article/0,,20047186_20047193_20042485,00.html','06/13/2007 06:00PM');
		 anext["20042485"] = new next_obj('20041598','New collab from Twista and Pharrell','/ew/article/0,,20047186_20047193_20041598,00.html','06/06/2007 04:00PM');
		 anext["20041598"] = new next_obj('20040711','!!! unplugs for new single','/ew/article/0,,20047186_20047193_20040711,00.html','05/30/2007 03:00PM');
		 anext["20040711"] = new next_obj('20049609','Green Day rock the \'\'Simpsons\'\' theme','/ew/article/0,,20047186_20047193_20049609,00.html','08/02/2007 03:00PM');
		 








