function ri()
{
	// images go here
	var img_name = new Array(
		"/templates/abs/img/home_banner/annuity-banner.jpg"
	);
	
	// links go here
	var img_links = new Array(
		"http://annuity.americanbible.org"
	);
	
	// pick a random element from the list
	var l = img_name.length;
	var rnd_no = Math.floor(l*Math.random());

	//set the appropriate attributes
	window.document.getElementById("urimg").src = img_name[rnd_no];
	window.document.getElementById("urlink").href = img_links[rnd_no];
	
}