 window.addEvent('domready',function(){                 
                 
                 var sampleObjectItems =[
                  {title:'TurnKey Art Solutions', link:'http://www.turnkeyartsolutions.com'},                 
                 {title:'Growing By Design', link:'http://www.growingbydesing.com'},
                 {title:'First United Methodist Church, Shreveport', link:'http://www.fumcshreveport.org'},
                 {title:'Normandy Village Condos', link:'http://www.normandyvillagecondos.com'},
                 {title:'Red River e-Marketing', link:'http://shreveportonlinemarketing.com'},
                 {title:'Mid South Pecan Company', link:'http://www.midsouthpecan.com'},
                 {title:'The S.A.G.E. Group', link:'http://www.thesagegroup.org'},
                 {title:'Tyler Krieg', link:'http://www.tylerkrieg.com'},
                 {title:'Houston Art and Frame', link:'http://houstonartandframe.com'},
                 {title:'Make A Vision Board', link:'http://www.makeavisionboard.com'}
                 ];
                                  
                 //SAMPLE 6 (on "mouseenter" walk)
                 var info6 = $('box6').getNext().set('opacity',0.7);
                 var nS6 = new noobSlide({
                 mode: 'vertical',
                 box: $('box6'),
                 items: sampleObjectItems,
                 size: 331,
                 handles: $$('#handles6_1 div').extend($$('#handles6_2 div')),
                 handle_event: 'mouseenter',
                 addButtons: {
                 previous: $('prev6'),
                 play: $('play6'),
                 stop: $('stop6'),
                 playback: $('playback6'),
                 next: $('next6')
                 },
                 button_event: 'click',
                 fxOptions: {
                 duration: 1000,
                 transition: Fx.Transitions.Back.easeOut,
                 wait: false
                 },
                 onWalk: function(currentItem,currentHandle){
                 info6.empty();
                 new Element('h4').set('html','<a href="'+currentItem.link+'" target="_blank" class="p">&gt;&gt; visit site</a>'+currentItem.title).inject(info6);
                 this.handles.set('opacity',0.7);
                 currentHandle.set('opacity',1);
                 }
                 });
                 var hs6 = new noobSlide({
                 //other options,
                 startItem: 1
                 });
                 hs6.previous();
                 //walk to next item
                 nS6.next();
                 
                 
                 
                 //more "previous" and "next" buttons
                 nS8.addActionButtons('previous',$$('#box8 .prev'));
                 nS8.addActionButtons('next',$$('#box8 .next'));
                 //more handle buttons
                 nS8.addHandleButtons(handles8_more);
                 //walk to item 3 witouth fx
                 nS8.walk(3,false,true);
                 
                 });
