// JavaScript Document

var ArtCount=11;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/diabetes-healing.html';
url[1]='http://www.nutritional-supplements-health-guide.com/diabetes-natural-treatment.html';
url[2]='http://www.nutritional-supplements-health-guide.com/diabetes-nutritional-supplements.html';
url[3]='http://www.nutritional-supplements-health-guide.com/diabetes-type-1-cure.html';
url[4]='http://www.nutritional-supplements-health-guide.com/diabetic-supplements.html';
url[5]='http://www.nutritional-supplements-health-guide.com/herbal-cure-for-diabetes.html';
url[6]='http://www.nutritional-supplements-health-guide.com/natural-remedies-for-diabetes.html';
url[7]='http://www.nutritional-supplements-health-guide.com/type-1-diabetes-symptoms.html';
url[8]='http://www.nutritional-supplements-health-guide.com/type-1-diabetes.html';
url[9]='http://www.nutritional-supplements-health-guide.com/type-2-diabetes.html';
url[10]='http://www.nutritional-supplements-health-guide.com/what-causes-diabetes.html';

anc[0]='Effective Diabetes Healing Techniques';
anc[1]='What To Look For In Diabetes Natural Treatment';
anc[2]='Which Are The Best Diabetes Nutritional Supplements?';
anc[3]='Seeking A Diabetes Type 1 Cure';
anc[4]='Diabetic Supplements: An Overview';
anc[5]='How An Herbal Cure For Diabetes Can Help In Diabetes Management';
anc[6]='Benefits Of Using Natural Remedies for Diabetes';
anc[7]='Recognizing Type 1 Diabetes Symptoms';
anc[8]='Learning To Live With Type 1 Diabetes';
anc[9]='Living With Type 2 Diabetes';
anc[10]='Things You Should Know About What Causes Diabetes';


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();