
function redirect_lookup(article_id)
{
	//This is written by the admin combiner application
	var redirects = '6730469,6709988,6715494,6709727,6698077,6692985,6659811,6616188,6577885,6584221,6525410,6521227,6509394,6499345,6478949,6481726,6475722,6476268,6391301,6395420,6395729,6399427,6304443,6282367,6283225,6289841,6246080,6210627,6221084,6214432,6263880,6109106,6104814,6114622,6113313,5923164,5896086,5900881,5901567,5901534,5858585,5854892,5846985,5864787,5867869,5867991,6020827,6024440,6028852,6046987,6056917,6057032,6065285,6065876,6113471,';
	
	var redirect_matches = new Array([6730467,'6730469'],[6430845,'6709988 6715494'],[6709137,'6709727'],[6697789,'6698077'],[6692593,'6692985'],[6683490,'6659811'],[6608752,'6616188'],[6572728,'6577885 6584221'],[6518857,'6525410 6521227'],[6511417,'6509394'],[6499060,'6499345'],[6500155,'6478949'],[6481457,'6481726'],[6475326,'6475722 6476268'],[6388583,'6391301 6395420 6395729 6399427'],[6309143,'6304443'],[6285553,'6282367'],[6285557,'6283225 6289841'],[6251668,'6246080 6210627 6221084 6214432 6263880'],[6105251,'6109106 6104814 6114622 6113313'],[5919266,'5923164'],[5896136,'5896086 5900881 5901567 5901534'],[6344385,'5858585 5854892 5846985 5864787 5867869 5867991'],[6016263,'6020827 6024440 6028852 6046987 6056917 6057032 6065285 6065876'],[6093885,'6113471']);

	var array_length = redirect_matches.length;
	var i = 0;

	//First see if we have a match at all
	if ( redirects.indexOf(article_id) > -1 )
	{
		//If we do have a match, we loop through the full array to find the id we redirect to
		for (i; i < array_length; i++) 
		{
		   var redirects_tmp = redirect_matches[i][1];
			if ( redirects_tmp.indexOf(article_id) > -1 )
			{
				return(redirect_matches[i][0]);
			}
		}
	}
	else return(article_id);
}
	