feature1List = new Array();
feature1List.push (['features/feature4.jpg', 'start/index.html']);
feature1List.push (['features/feature2.jpg', '/community/local.html']);
feature1List.push (['features/feature1.jpg', '/happening/sermon.html']);
feature1List.push (['features/feature5.jpg', 'media/index.html']);
feature1List.push (['features/feature4.jpg', 'start/index.html']);
feature1List.push (['features/feature2.jpg', '/community/local.html']);


var feature1Index = Math.round(Math.random()*(feature1List.length-1));
var feature2Index = Math.round(Math.random()*(16-1))+1;

function gotoFeature1Link(){
	window.location.href = feature1List [feature1Index] [1];
}

document.write ('<style type="text/css">');
document.write ('#feature1 {background-image: url(../images/'+feature1List[feature1Index][0]+')}');
document.write ('#feature2 p {background-image: url(../images/verse'+feature2Index+'.gif)}');
document.write ('</style>');