// JavaScript Document

var ArtCount=7;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/best-dietary-supplements.html';
url[1]='http://www.nutritional-supplements-health-guide.com/herbal-supplements-guide.html';
url[2]='http://www.nutritional-supplements-health-guide.com/buy-nutritional-supplements.html';
url[3]='http://www.nutritional-supplements-health-guide.com/high-quality-nutritional-supplement.html';
url[4]='http://www.nutritional-supplements-health-guide.com/liquid-nutritional-supplements.html';
url[5]='http://www.nutritional-supplements-health-guide.com/pharmaceutical-grade-nutritional-supplements.html';
url[6]='http://www.nutritional-supplements-health-guide.com/nutritional-health-supplements.html';

anc[0]='Choosing the Best Dietary Supplements for Optimum Health';
anc[1]='A Useful Herbal Supplements Guide';
anc[2]='Your Guide to Buying Nutritional Supplements';
anc[3]='A Simple Guide for Choosing High Quality Nutritional Supplements';
anc[4]='The Truth about Liquid Nutritional Supplements';
anc[5]='What You Need to Know about Pharmaceutical Grade Nutritional Supplements';
anc[6]='Your Basic Guide to the Best Nutritional Health Supplements';


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();
