window.addEvent('domready', function() {
    //SAMPLE 8
    var handles8_more = $$('#handles8_more span');
    nS8 = new noobSlide({
        box: $('box8'),
        items: $$('#box8 h3'),
        size: 615,
        handles: $$('#handles8 span'),
        //buttons: {play: $('play8'), stop: $('stop8')},
        autoPlay: false,
        onWalk: function(currentItem, currentHandle) {
            //style for handles
            $$(this.handles, handles8_more).removeClass('active');
            $$(currentHandle, handles8_more[this.currentIndex]).addClass('active');
            //sync up product nav
            accordion.display(this.currentIndex - 1);
        }
    });
    //more handle buttons
    nS8.addHandleButtons(handles8_more);
    //walk to item 3 witouth fx
    nS8.walk(0, false, true);

    $$("#product-main-container").removeClass('hide');
});