// JavaScript Document

var ArtCount=4;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/glucosamine-natural-source.html';
url[1]='http://www.nutritional-supplements-health-guide.com/glucosamine-benefits.html';
url[2]='http://www.nutritional-supplements-health-guide.com/glucosamine-sulfate-side-effects.html';
url[3]='http://www.nutritional-supplements-health-guide.com/side-effects-of-glucosamine-and-chondroitin.html';


anc[0]='Glucosamine Natural Source and Getting it Through Diet';
anc[1]='Glucosamine Benefits and Reasons to Take It';
anc[2]='Glucosamine Sulfate Side Effects and Dangers';
anc[3]='What are the Side Effects of Glucosamine and Chondroitin?';



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();