			function loadImage(object, url, id) {
				i1=document.getElementById('bigImage');
				i2=document.getElementById('imageHolder');
				iLoading=document.getElementById('imageLoading');
				
				if (document.all) {
				iLoading.style.top = object.offsetTop + 80 + 'px';
				iLoading.style.right = '15px';
				} else {
				iLoading.style.top =object.offsetTop + 'px';
				iLoading.style.left =object.offsetLeft + 'px';
				}
				iLoading.style.width = object.offsetWidth - 40 + 'px';
				iLoading.style.height = object.offsetHeight - 40 + 'px';
				iLoading.style.display = 'block';

				var D = new Date();
				var T = +D;        
				i1.onload = imageLoaded;
				
				i1.src = url;
				i2.style.display = 'none';
				i2.style.top = object.offsetTop - 11 + 'px';
				
			}
			
			function imageLoaded() {
				i2.style.display = 'block';
				iLoading.style.display = 'none';
			}
