$(document).ready(function(){
    $("#wheeled").scrollable({ size: 6 }).circular().autoscroll({ steps: 1, interval: 4000 });

    $(".tabbed").tabs("#sidebar > div", {
        current: 'current',
        effect: 'fade',
        tabs: 'li.tabs',
    });

    $('#slides').cycle({
        fx:    'fade', 
        timeout: 4000,
	    delay: 1000,
	    pause:   1,
        before: onBefore
    });

    function onBefore(currSlideElement, nextSlideElement, options, forwardFlag){
        var title = $(this).find('img').attr('alt');
        $('#banner h5 span').hide().fadeIn("slow").text(title);
    }

    $('.notification li').hide().fadeIn("slow").fadeTo("1.0", "slow").fadeOut("slow");

    $('.trailer').media({ width: 590, height: 340, autoplay: true });
    
    var loading_img = $('<img />').attr('src', media_url + 'img/loader.gif');

    $('#order input[class="button"]').click(function(){
        $(this).fadeOut("fast");
        $('form').append('<span class="waiting"></span>');
        $('form .waiting').append(loading_img);
    });

});