function successPreload() {
  showAllImages();
  var originalSizes = new Array();
  $('#gallery').jScrollHorizontalPane({showArrows:true, wheelSpeed: 400});
}
function showAllImages() {
  $('#loading').addClass("hide");
  $('#gallery').removeClass("hide");
} 

/* 
document.observe("dom:loaded", function() {
	setGallery();
});

function setGallery() {
	if ($('gallery')) {
		var w1 = document.viewport.getWidth()-275;
		if (w1 < 760) {
			w1 = 760;
		}
		$('gallery').style.width = w1 + "px";
	}
}

window.onresize=setGallery;
*/