Suomi24.interstitial = {
  hideTimerId: 0,
  init: function() {
	jQuery("#interstitialContent").prepend('<a href="#" onclick="Suomi24.interstitial.hide(); return false;" id="interstitialHide">Sulje mainos [X]</a>');
    this.startHideTimer();
    this.show();
  },
  show: function() {
    jQuery("#interstitialWrapper").show();
    jQuery("body").addClass("hasInterstitial");
  },
  startHideTimer: function (){
    this.hideTimerId = setTimeout ("Suomi24.interstitial.hide();", 10000);
  },
  hide: function() {
    jQuery("#interstitialWrapper").hide();
    jQuery("body").removeClass("hasInterstitial");
	clearTimeout(Suomi24.interstitial.hideTimerId);
  }
};
