window.addEvent('domready',function(){
    
    //SAMPLE 5 (mode: vertical, using "onWalk" )
    var info5 = $('info5').set('opacity',0.8);
    var sampleObjectItems =[
        {title:'Puerta Abatible', autor:'Automatismos Ecoman', date:'5 Jun 2007', link:'http://www.link1.com'},
        {title:'Puertas seccionales', autor:'Automatismos Ecoman', date:'6 Dic 2007', link:'http://www.link2.com'},
        {title:'Puerta abatible de 2 hojas', autor:'Automatismos Ecoman', date:'22 Jul 2007', link:'http://www.link4.com'},
        {title:'Puerta abatible de 2 hojas', autor:'Automatismos Ecoman', date:'5 Nov 2007', link:'http://www.link6.com'},
        {title:'Puerta abatible de 2 hojas', autor:'Automatismos Ecoman', date:'10 Abr 2007', link:'http://www.link9.com'},
        {title:'Puerta seccional', autor:'Automatismos Ecoman', date:'10 Abr 2007', link:'http://www.link10.com'}
    ];
    var nS5 = new noobSlide({
        mode: 'vertical',
        box: $('box5'),
        size: 250,
        items: sampleObjectItems,
        autoPlay: true,
        addButtons: {
            previous: $('prev5'),
            play: $('play5'),
            stop: $('stop5'),
            next: $('next5')
        },
        onWalk: function(currentItem){
            info5.empty();
            new Element('h4').set('html',currentItem.title).inject(info5);
            // new Element('p').set('html','<b>Autor</b>: '+currentItem.autor+' &nbsp; &nbsp; <b>Date</b>: '+currentItem.date).inject(info5);
        }
    });
});

