
/*  --------------------------------------------    
    core.js
    com.pushhere.www
    regi e.(regi@pushhere.com, Lead Dev)
    - Requires(Location):
      [mootools-core.js]
      (script/core.js)
    --------------------------------------------  */
    
    
/*  Class: landingPage
    ----------------------------------------------  */    
    var landingPage = new Swiff('/static/images/home_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() {
       landingPage.replaces($('animation'));
       if (!$('default-image')) {
	       new SimpleCarousel($('partner-images'), $$('#partners-section .mask img'), {
	        slideInterval: 2000
	       });       	
       };
    });
    
