function LoadImageRotator(photos)
{
	function init_ImageStack() {
		cvi_istack.add(document.getElementById('slideshow'),{
			imagearray: photos,
			mainwidth: 150,
			mainheight: 150,
			playdelay: 4000,
			playscript: 'cvi_instant',
			noiefade: true
		});
	}
	if(window.attachEvent) {
		window.attachEvent("onload", init_ImageStack);
	}else {
		window.addEventListener("load", init_ImageStack, false);
	}
}

function LoadBackgroundImage(imageUrl)
{
	$('#loading').show();
	
	img = new Image();
	$(img).load(function () {
		$('body').css('background-image', 'url("' + imageUrl + '")');
		$('#loading').hide();
    }).error(function () {
      // notify the user that the image could not be loaded
    }).attr('src', imageUrl);
}