function prepareLinksPictures() {
	home_off=new Image();
	home_off.src="http://ezymoney.netfirms.com/home.gif";
	home_on=new Image();
	home_on.src="http://ezymoney.netfirms.com/home_on.gif";

	supp_off=new Image();
	supp_off.src="http://ezymoney.netfirms.com/supp.gif";
	supp_on=new Image();
	supp_on.src="http://ezymoney.netfirms.com/supp_on.gif";

	forum_off=new Image();
	forum_off.src="http://ezymoney.netfirms.com/forum.gif";
	forum_on=new Image();
	forum_on.src="http://ezymoney.netfirms.com/forum_on.gif";
}

function imgOn(imgName) {
	document[imgName].src=eval(imgName+"_on.src");
}

function imgOff(imgName) {
	document[imgName].src=eval(imgName+"_off.src");
}
 
function create_links() {
	str='<table style="width:100%; height:100%; border-color:000000; border-width:0px"><tr>'
		+'<td style="width:100px; height:100%; border-right-width:10px; text-indent:5px">'
		+'<img name="home" src="http://ezymoney.netfirms.com/home.gif" style="width:15px; height:15px">'
		+'<a href="http://ezymoney.netfirms.com/" style="color:#FFFFFF" onmouseover="this.style.color=16763904; imgOn('+"'home'"+');"'
		+' onmouseout="this.style.color=16777215; imgOff('+"'home'"+');">Home</a></td>'
		+'<td style="width:100px; height:100%; border-right-width:10px; text-indent:5px">'
		+'<img name="forum" src="http://ezymoney.netfirms.com/forum.gif" style="width:15px; height:15px">'
		+'<a href="http://www.getpaidforum.com/forums/" style="color:#FFFFFF" onmouseover="this.style.color=16763904; imgOn('+"'forum'"+');"'
		+' onmouseout="this.style.color=16777215; imgOff('+"'forum'"+');">Forum</a></td>'
		+'<td style="width:100px; height:100%; border-right-width:10px; text-indent:5px">'
		+'<img name="supp" src="http://ezymoney.netfirms.com/supp.gif" style="width:15px; height:15px">'
		+'<a href="mailto:regdorf@myecom.net" style="color:#FFFFFF" onmouseover="this.style.color=16763904; imgOn('+"'supp'"+');"'
		+' onmouseout="this.style.color=16777215; imgOff('+"'supp'"+');">Feedback</a></td>'
		+'<td style="height:100%; border-right-width:10px; text-align:right">';
	str+='<a href="javascript:external.AddFavorite';
	str+="('http://ezymoney.netfirms.com', 'How to make money on the Net')";
	str+='" style="color:#FFFFFF; margin-right:10px" onmouseover="this.style.color=16763904;"'
	+' onmouseout="this.style.color=16777215;">Add to favourite</a></td></tr></table>';
	document.all.links.insertAdjacentHTML("beforeEnd", str);
	prepareLinksPictures();
}