
function initGallery() {
	var _box = $('scrollable');
	if (_box)
	{
		var hs = new noobSlide({
		box: _box,
		items: $ES('li','scrollable'),
		size: 97,
		_cut: 3,
		mode: 'vertical',
		interval: 3000,
			fxOptions: {
				duration: 500,
				wait: false
			},
			buttons: {
				previous: $('up-btn'),
				next: $('down-btn')
			}
		});
	}
}


if (window.addEventListener)
	window.addEventListener("load", initGallery, false);
else if (window.attachEvent && !window.opera)
	window.attachEvent("onload", initGallery);
