﻿
window.addEvent("domready", function() {
    //$('logo').fade('hide');
    $('splash-img').fade('hide');
    $('splash-navigation').setStyle('right', 0 - $('splash-navigation').getSize().x);
/*
    var obj = new Swiff('/content/flash/pd_splash.swf', {
        container: $('logo'),
        id: 'flash-logo',
        width: 439,
        height: 130,
        params: {
            wmode: 'Transparent'
        }
    });
*/
    
});

window.addEvent("load", function() {
    var x = new Chain();
    x.chain(function() { new Fx.Tween('splash-img', { duration: 500 }).start('opacity', 1); });
    x.chain(function() { new Fx.Tween('splash-navigation', { duration: 500 }).start('right', 20); });
    x.callChain.delay(500, x)
    x.callChain.delay(2000, x)
    
});

