window.addEvent('domready',function(){
	var prevArray = $$('.prev');
	prevArray.each(function(item,index) {
		item.id = item.id + "" + index;
	});
	var nextArray = $$('.next');
	nextArray.each(function(item,index) {
		item.id = item.id + "" + index;
	});
	var boxArray = $$('.box');	
	boxArray.each(function(item,index) {
		item.id = item.id + "" + index;
		new noobSlide({
			mode: 'horizontal',
			box: $(item.id),
			items: $$("#"+item.id +" .img_row"),
			size: 426,
			addButtons: {previous: $("prev"+index), next: $("next"+index) }
		}).walk(0,false,true);
	});
});



