// JavaScript Document

var ArtCount=5;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/what-is-5-htp.html';
url[1]='http://www.nutritional-supplements-health-guide.com/5-htp-side-effects.html';
url[2]='http://www.nutritional-supplements-health-guide.com/5-htp-supplements.html';
url[3]='http://www.nutritional-supplements-health-guide.com/benefits-of-5-htp.html';
url[4]='http://www.nutritional-supplements-health-guide.com/5-htp-dosage.html';

anc[0]='What is 5-HTP and Other Frequently Asked Questions';
anc[1]='Some 5-HTP Side Effects You Should Know About';
anc[2]='Everything You Need to Know About 5 HTP Supplements';
anc[3]='The Benefits of 5-HTP You Shouldn\'t Take for Granted';
anc[4]='Be Informed: Know the Right 5 HTP Dosage to Take';


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();