function insert_banner() {
	var rn=Math.floor(Math.random()*11)
	var area1coords="701,88,749,100";
	var area2coords="757,88,819,100";

	if (rn>=0 && rn<=2) {
		document.write('<img id="promo-img" src="../res/img/banners/banner_01.jpg" alt="As many of the homeless people in our large urban areas come from neighbouring and distant small towns." width="830" height="106" usemap="#banareas"/>');
	}
	else if (rn>=3 && rn<=5) {
		document.write('<img id="promo-img" src="../res/img/banners/banner_02.jpg" alt="Statistics don\'t matter to an individual who is 100% homeless." width="830" height="106" usemap="#banareas"/>');
		var area1coords="687,78,735,89";
		var area2coords="740,78,801,89";
	}
	else if (rn>=6 && rn<=8) {
		document.write('<img id="promo-img" src="../res/img/banners/banner_03.jpg" alt="The greatest tragedy regarding homelessness in Canada is not the poverty of resources, but the poverty of relationships." width="830" height="106" usemap="#banareas"/>');
		var area1coords="682,91,731,104";
		var area2coords="738,91,799,104";
	}
	else {
		document.write('<img id="promo-img" src="../res/img/banners/banner_04.jpg" alt="The majority of young people I have known on the street were &quot;homeless&quot; long before they were &quot;houseless&quot;." width="830" height="106" usemap="#banareas"/>');
	}

	
	document.write('<map name="banareas" id="banareas">');
	document.write('<area shape="rect" coords="'+area1coords+'" href="http://signpostvillage.com/timhuff/" alt="Tim Huff" />');
	document.write('<area shape="rect" coords="'+area2coords+'" href="/english/cause/" alt="Learn More" />');
	document.write('</map>');

}

