window.addEvent('domready',function(){
    //SAMPLE _werc
    var werc = new noobSlide({
        box: $('werc_box'),
        startItem: 1,
        items: $ES('h3','werc_box'),
        interval: 10000,
        size: 292,
        autoPlay: true,
        handles: $ES('li','handles'),
        buttons: {previous: $('prev_werc'), play: $('play_werc'), stop: $('stop_werc'), next: $('next_werc') },
        onWalk: function(currentItem,currentHandle){
            //style for handles
            this.handles.extend(handles_werc).removeClass('active');
            $$(currentHandle,handles_werc[this.currentIndex]).addClass('active');
            //text for "previous" and "next" default buttons
//                $('prev_werc').setHTML('&lt;&lt; '+this.items[this.previousIndex].innerHTML);
//                $('next_werc').setHTML(this.items[this.nextIndex].innerHTML+' &gt;&gt;');
        }
    });
    //more "previous" and "next" buttons
    werc.addActionButtons('previous',$ES('.prev','werc_box'));
    werc.addActionButtons('next',$ES('.next','werc_box'));
    //more handle buttons
    var handles_werc = $ES('span','handles');
    werc.addHandleButtons(handles_werc);
    //
    werc.walk(0)

});