// JavaScript Document

var ArtCount=5;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/red-clover.html';
url[1]='http://www.nutritional-supplements-health-guide.com/red-clover-benefits.html';
url[2]='http://www.nutritional-supplements-health-guide.com/red-clover-extract.html';
url[3]='http://www.nutritional-supplements-health-guide.com/red-clover-side-effects.html';
url[4]='http://www.nutritional-supplements-health-guide.com/red-clover-supplement.html';

anc[0]='Red Clover Extract: How Good Is It for the Body?';
anc[1]='Red Clover Benefits: How It Helps Both Men and Women';
anc[2]='Red Clover Extract: What You Get';
anc[3]='Red Clover Side Effects You Should Watch Out For';
anc[4]='Knowing the Effectiveness of Red Clover Supplement';


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();