var feature = [
	['images/tmp-home03.jpg','Marques de Paiva<span class="supHome">&reg;</span> gourmet coffees combine superb taste with a commitment to sustainable practices.','homeText0'],
	['images/tmp-home06.jpg','Marques de Paiva<span class="supHome">&reg;</span> gourmet coffees combine superb taste with a commitment to sustainable practices.','homeText1'],
	['images/tmp-home07.jpg','Marques de Paiva<span class="supHome">&reg;</span> gourmet coffees combine superb taste with a commitment to sustainable practices.','homeText2']
]

function doFeature() {
	// get random feature
	var featNum = Math.floor(Math.random()*feature.length);
	document.writeln('<h1 id="'+feature[featNum][2]+'">'+feature[featNum][1]+'</h1>');
	document.writeln('<p><img src="'+feature[featNum][0]+'" width="973" height="550" /></p>');
}