function ShowPgContents() {
document.getElementById('index_container').style.visibility = 'visible';
}

function FadeOverlay() {
new Effect.Fade('index_overlay', {duration:3.0});
setTimeout("ShowPgContents()", 1000);
}


function Landing_Effects() {
new Effect.Appear('quote', {duration:1.0, delay: 0.0});
new Effect.Appear('photo', {duration:1.0, delay: 4.0});
new Effect.Appear('logo', {duration:1.0, delay: 5.0});

new Effect.Appear('click', {duration: 3.0, delay: 8.0});
//new Effect.Fade('click', {duration: 3.0, delay: 16.0});
new Effect.Highlight('new',{startcolor: "#f0e685", duration: 4.0, delay: 6.5});

}

