setTimeout("loadFlash();", 30000);
setTimeout("showSkipAd();", 15000);

//Collaspe the loader DIV which overlays the flash movie
function loadFlash() {
    document.getElementById("loader").style.display = "none";
    RunLineRider();
}

//Show the skipAd DIV
function showSkipAd() {
    document.getElementById("SkipAd").style.visibility = "visible";
}

//Collaspe the SkipAd, Loader DIV
function skipAd() {
    document.getElementById("loader").style.display = "none";
    RunLineRider();
}