// JavaScript Document

var ArtCount=4;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/health-benefits-of-msm.html';
url[1]='http://www.nutritional-supplements-health-guide.com/msm-dietary-supplement.html';
url[2]='http://www.nutritional-supplements-health-guide.com/msm-for-hair-growth.html';
url[3]='http://www.nutritional-supplements-health-guide.com/msm-side-effects.html';


anc[0]='Health Benefits of MSM and Why You Should Take It';
anc[1]='MSM Dietary Supplement and Better Health';
anc[2]='MSM for Hair Growth and Hair Loss';
anc[3]='MSM Side Effects and the Dangers';



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();