// JavaScript Document

var ArtCount=5;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/benefits-of-milk-thistle.html';
url[1]='http://www.nutritional-supplements-health-guide.com/milk-thistle-extract.html';
url[2]='http://www.nutritional-supplements-health-guide.com/milk-thistle-and-hepatitis-c.html';
url[3]='http://www.nutritional-supplements-health-guide.com/milk-thistle-supplements.html';
url[4]='http://www.nutritional-supplements-health-guide.com/milk-thistle-side-effects.html';

anc[0]='Benefits Of Milk Thistle';
anc[1]='Milk Thistle Extract-Take Care of Your Liver With A Milk Thistle Herbal Supplement';
anc[2]='Milk Thistle and Hepatitis C: How to Deal with the Latter More Efficiently';
anc[3]='Tips on Getting Your Own Milk Thistle Supplements';
anc[4]='What Are the Different Milk Thistle Side Effects?';

var RL='<br /><br /><b>Related Articles</b><br /><br /><ul>';
var title = document.getElementsByTagName("h1")[0].innerHTML;
var i=0;

function RLArticles(){
	for (i=0;i<=ArtCount-1;i++){
         if (title!=anc[i]){
     		 RL+='<li><a href="' + url[i] + '">' + anc[i] + '</a></li>';
		 }
	}

//alert(RL);
RL+='</ul><br><br>'
 document.write(RL);
}

RLArticles();
