/* =============================================================================
   MTV Video Music Award Contest Custom JS
   Code: @danott
   Design: @jamesdonaldson
   Date: 11 AUG 2011
   ========================================================================== */
   
Modernizr.load([{
    
    // Make the main #slideshow uzing Zurb's jQuery Orbit Plugin.
    load: 'js/libs/jquery.orbit-1.2.3.min.js',
    complete:function() {

        $("#slideshow").orbit({
            animationSpeed: 800,
            timer: true,
            advanceSpeed: 4000,
            directionalNav: false,
            captions: false,
            bullets: true
        });
    }
    
}, {
    
    // Add HTML5 placeholders if the browser doesn't natively them.
    test: Modernizr.input.placeholder,
    nope: 'js/libs/jquery.placeholder.js'
        
}]);
