
/*  --------------------------------------------    
    cars.js
    com.pushhere.www
    regi e.(regi@pushhere.com, Lead Dev)
    - Requires(Location):
      [mootools-core.js]
      (script/cars.js)
    --------------------------------------------  */
    
    
/*  Class: landingPage
    ----------------------------------------------  */    
    var carsPage = new Swiff('/static/images/cars_animation.swf', {
        id: 'animation',
        width: '100%',
        height: '308',
        style: 'visibility: visible',
        container: $('section-header'),
            params:  {
                bgcolor: '#ffffff',
                allowScriptAccess: 'always',
                quality: 'high',
                wMode: 'opaque',
                scale: 'noscale',
                menu: 'false',
                swLiveConnect: 'false'
            }
    });
    
    
/*  Ready()
    -----------------------------------------------  */
    window.addEvent('domready', function() {
       carsPage.replaces($('animation'));
    });
    