window.onload = function(){
	var scrollGallery;
	
	WCore.Util.includeScript('WGallery/ScrollGallery', function()
  									{ 
  										scrollGallery = new WGallery.ScrollGallery({
  											targetId : "#scroll-test",
  											transitionTime : 4000,
  											scrollTime : 2000,
  											height: "200px",
  											//width: "1000px",
  											imagesWidth : "267px",
  											imagesHeight : "200px",
  											stopOnHover : true,
  											marginRight : "10px"
  										});
  										scrollGallery.render();
  									 }
  							);
}

