Andrew Turbott's personal blog
Archive for October 12, 2008
My musical preferences
Oct 12th
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);
}


Recent Comments