
<!--// MooTools - domready for Lightbox //-->
			window.addEvent('domready',function(){
				Lightbox.init({descriptions: '.lightboxDesc', showControls: true});
			});


<!--// Homepage - domready for noobSlide //-->

	window.addEvent('domready',function(){
		//SAMPLE 4 (walk to item)
		var hs4 = new noobSlide({
			box: $('box4'),
			items: $ES('div','box4'),
			size: 500,
			handles: $ES('span','handles4'),
			onWalk: function(currentItem,currentHandle){
				$('info4').setHTML(currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});	
	});




<!--// MooTools - domready for noobSlide - Featured Exhibitions//-->
	window.addEvent('domready',function(){
		//SAMPLE 4 (walk to item) Featured Artists
		var hs4 = new noobSlide({
			box: $('box4'),
			items: $ES('div','box4'),
			size: 500,
			handles: $ES('span','handles4'),
			onWalk: function(currentItem,currentHandle){
				$('info4').setHTML(currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
	});