function createAffContents() {
	var menuItems=new Array();
	menuItems[0]=new Object;
	menuItems[0].name="Commission Junction";
	menuItems[0].ref='"cj.htm"';

	menuItems[1]=new Object;
	menuItems[1].name="clickXchange";
	menuItems[1].ref='"clickxchange.htm"';

	menuItems[2]=new Object;
	menuItems[2].name="Shareasale";
	menuItems[2].ref='"shareasale.htm"';

	str="<table id='menu' cellspacing=0px cellpadding=0px style='width:160px; height:50px; "
		+"border-width:0px;'>";
	str+="<tr><td class=separator><hr></td></tr>";
	if( document.title=="Make profit from your website" ) {
		str+="<tr><td><a class=leftmenuheader style='cursor:default; color:gold'>Make profit from your website</a></td></tr>";
	} else {
		str+="<tr><td><a class=leftmenuheader href='index.htm'>Make profit from your website</a></td></tr>";
	}
	for( i=0; i<menuItems.length; i++ ) {
		if( menuItems[i].name==document.title ) {
			str+="<tr><td><a class=leftmenuitem style='cursor:default; color:gold'>"
				+menuItems[i].name+"</a></td></tr>";
		} else {
			str+="<tr><td><a class=leftmenuitem href="+menuItems[i].ref+">"+menuItems[i].name
				+"</a></td></tr>";
		}
	}
	str+="<tr><td class=separator><hr></td></tr>";
	str+="</table>";
	document.all.contents.insertAdjacentHTML("afterBegin", str);
}