// JavaScript Document
window.addEvent('domready',function(){
	if ($('imglist'))
		loadGallery();		
});

function loadGallery() {
	var hs = new noobSlide({
		box: $('imglist'),
		size: 648,
		items: $$('#handles span'),
		handles: $$('#handles span'),
		interval: 10000,
		autoPlay: true,
		onWalk: function(currentItem,currentHandle){
				$$(this.handles).removeClass('active');
				$(currentHandle).addClass('active');
		}
	});
	hs.walk(0)	
}