window.addEvent('domready', 
	function()
	{
		// Build the items
		var i = 0;
		var myItems = new Array();
		$$('div#box img').each(
			function(e)
			{
				myItems[i] = i;
				i++;
			}
		);

		var nS = new noobSlide(
			{
				box: $('box'),
				items: myItems,
				size: 300,
				interval: 6000,
				fxOptions: {
					duration: 1,
					transition: Fx.Transitions.linear,
					wait: false
				},
				autoPlay: true
			}
		);

		$('box').addEvent('mouseover', 
			function()
			{
				nS.stop();
			}
		);

		$('box').addEvent('mouseout', 
			function()
			{
				nS.play(6000, 'next', true);
			}
		);
	}
);