
I was excited to find that I made the trailer for the Express. I know, I am really small, but I am walking toward the camera, so you never know.
Here I am. :37 seconds into it.
Here’s a link to the first official movie trailer.

I was excited to find that I made the trailer for the Express. I know, I am really small, but I am walking toward the camera, so you never know.
Here I am. :37 seconds into it.
Here’s a link to the first official movie trailer.
setTimeout(function()
{
switchPage($('page2'), $('page1'));
}, 5000);
function switchPage(whichIn, whichOut)
{
new Effect.Fade(whichOut, {duration:3, from:1.0, to:0.0, queue:'front'});
new Effect.Appear(whichIn, {duration:3, from:0.0, to:1.0, queue:'end'});
setTimeout(function(){switchPage(whichOut, whichIn)}, 11000);
}