function initPage() {
	var img_hold = document.getElementById('image-holder');
	if(img_hold){
		var _list = img_hold.getElementsByTagName('img');
		var _n = Math.floor(Math.random()*_list.length);
		_list[_n].style.display = 'block';
		if(typeof(fixTrans) == 'function' && document.all && !window.opera){
			fixTrans();
		}
	}
}
if (window.addEventListener){
	window.addEventListener("load", initPage, false);
}
else if (window.attachEvent){
	window.attachEvent("onload", initPage);
}