function slide_frontpage_imagery () {
  var img = new Image();
	jQuery(img).load(function(){										
		jQuery('.frontpage-imagery').append(this);
		jQuery('.frontpage-imagery').css('visibility', 'visible');	
		jQuery(this).fadeIn(3000, function(){
			if (jQuery('.frontpage-imagery').find('img').length>1) {
				jQuery('.frontpage-imagery img:first-child').remove();
			}
		});
		ud_page_image_i = (ud_page_image_i<(ud_page_images_total-1)) ? ud_page_image_i+1 : 0;
		setTimeout(function() { slide_frontpage_imagery(); }, 10000);
	});
	//jQuery(img).hide();
	jQuery(img).attr('src', ud_page_images[ud_page_image_i]);
	if (ud_page_image_anchors[(ud_page_image_i-1)]!='') {
		jQuery(img).click(function(){
			location.href = ud_page_image_anchors[(ud_page_image_i-1)];
		});
	}
}
