function introLoad()
{
    var teaser = document.getElementById( "teaser" );
    var teaserShadow = document.getElementById( "teaser_shadow" );

    var labels = new Array( "MINING", "MANUFACTURING", "DEFENCE", "AUTOMOTIVE", "DISTRIBUTION", "WAREHOUSING", "PHOENIX STORAGE" );
    var loop = function( i )
    {
        if( i == labels.length ) continue_();
        else
        {
            while( teaser.hasChildNodes() ) teaser.removeChild( teaser.firstChild );
            while( teaserShadow.hasChildNodes() ) teaserShadow.removeChild( teaserShadow.firstChild );
            teaser.appendChild( document.createTextNode( labels[ i ] ) );
            teaserShadow.appendChild( document.createTextNode( labels[ i ] ) );
            teaser.style.left = "0px";
            teaserShadow.style.left = "100px";
            new Silk( teaserShadow, "opacity", null, 0.1, null, 0.1, null );
            new Silk( teaserShadow, "left", null, 0, "px", 1, null );
            new Silk( teaser, "opacity", null, 1, null, 0.1, null );
            new Silk( teaser, "left", null, 50, "px", 0.5, function()
            {
                new Silk( teaserShadow, "left", null, -30, null, 1, null );
                new Silk( teaserShadow, "opacity", null, 0, null, 0.01, null );
                new Silk( teaser, "opacity", null, 0, null, 0.1, null );
                new Silk( teaser, "left", null, 70, "px", 0.5, function()
                {
                    loop( i + 1 );
                } );
            } );
        }
    };
    loop( 0 );
}
function continue_()
{
    location.href = "/Welcome";
}