function init() {
	var photoBlock=document.getElementById("photoBlock");
	var i, rand, temp, str, nums = [];
	for( i=1; i<44; i++) {
		nums[i] = i ;
	}
	for( i=1; i<44; i++) {
		rand = Math.ceil(Math.random()*43);
		temp = nums[i];
		nums[i] = nums[rand];
		nums[rand]=temp;
	}
	str = '<img src="/blog/wp-content/themes/starkers/style/images/news_banner_' + nums[1] + '.jpg" alt="Feature photo" style="width: 928px; height: 194px;" />';
	photoBlock.innerHTML = str;
}
window.onload=init;