// JavaScript Document

var ArtCount=7;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/cholesterol-drugs-zocor-side-effects.html';
url[1]='http://www.nutritional-supplements-health-guide.com/cholesterol-reducing-foods.html';
url[2]='http://www.nutritional-supplements-health-guide.com/natural-cholesterol.html';
url[3]='http://www.nutritional-supplements-health-guide.com/plant-sterols-for-cholesterol-reduction.html';
url[4]='http://www.nutritional-supplements-health-guide.com/side-effects-of-statin-drugs.html';
url[5]='http://www.nutritional-supplements-health-guide.com/symptoms-of-cholesterol.html';
url[6]='http://www.nutritional-supplements-health-guide.com/symptoms-of-cholesterol.html';

anc[0]='Cholesterol Drugs - Zocor Side Effects';
anc[1]='Lower Your Cholesterol by Eating Cholesterol Reducing Foods';
anc[2]='A Natural Cholesterol Remedy';
anc[3]='Plant Sterols for Cholesterol Reduction - Basic Knowledge Can Save Your Life';
anc[4]='Side Effects of Statin Drugs and Dangers for Lowering Cholesterol';
anc[5]='Symptoms of Cholesterol and Identification';
anc[6]='How to Lower Cholesterol - Lower Your Cholesterol Naturally';

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();