// JavaScript Document

var ArtCount=8;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/herbal-remedy-for-sleep.html';
url[1]='www.nutritional-supplements-health-guide.com/herbal-sleep-supplements.html';
url[2]='http://www.nutritional-supplements-health-guide.com/natural-remedies-for-sleep.html';
url[3]='http://www.nutritional-supplements-health-guide.com/natural-sleeping-pills.html';
url[4]='http://www.nutritional-supplements-health-guide.com/non-prescription-sleep-aids.html';
url[5]='http://www.nutritional-supplements-health-guide.com/sleeping-disorder-symptoms.html';
url[6]='http://www.nutritional-supplements-health-guide.com/sleeping-remedies.html';
url[7]='http://www.nutritional-supplements-health-guide.com/types-of-sleeping-disorders.html';

anc[0]='How Herbal Remedy for Sleep Works?';
anc[1]='The Great Benefits of Herbal Sleep Supplements';
anc[2]='Natural Remedies for  Sleep Disorder';
anc[3]='Put Yourself in Deep Slumber with Natural Sleeping Pills';
anc[4]='The Things You Need to Know about Non Prescription Sleep Aids';
anc[5]='Be Aware: Know the Sleeping Disorder Symptoms';
anc[6]='Your Four Natural Sleeping Remedies';
anc[7]='Types of Sleeping Disorders: Know Them';


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();
