window.addEvent( 'domready', function()
{
    var d  = new Date;

    var m  = String( d.getMonth() ).length == 2 ? d.getMonth() : '0' + d.getMonth();

    var dd = String( d.getDate() ).length  == 2 ? d.getDate()  : '0' + d.getDate();

    var c  = parseInt( String.concat( d.getFullYear(), m, dd ) );

    if ( c == 20090530 || c == 20090606 )
    {
        $('countdown').innerHTML = 'Today';
        $$('h3.offers-end')[0].style.textAlign = 'right';
    }

    if ( c > 20090530 && c < 20090606 )
    {
        try {
            var param = $( 'param-movie' );
            var value = param.getAttribute( 'value' )
                param.setAttribute( 'value', value.replace( 'countDown.swf', 'countDownBonus.swf' ) );
        }
        catch( e ) {
        }

        var embed = $( 'param-embed' );
        var value = embed.getAttribute( 'src' )
            embed.setAttribute( 'src', value.replace( 'countDown.swf', 'countDownBonus.swf' ) );
    }

    /*if ( c > 20090606 &&  $('countdown') != null )
        $('countdown').erase( 'html' ).getPrevious().erase( 'html' ).getPrevious().erase( 'html' );	
	*/
});