﻿var BreakThroughSplash = {
    cookieName: "Home.BreakThroughSplash",
    //
    HandleFlash: function() {
        setTimeout("BreakThroughSplash.HideFlashSplash()", 6000);
        this.SetCookie();
    },
    //
    HideFlashSplash: function() {
       jQuery("#flashResizer").css("display","none");
    },
    //
    SetCookie: function() {
        jQuery.cookie(this.cookieName, "true", { expires: 2, domain: "imediaconnection.com", path: "/" });
    },
    //
    Replay: function() {
        this.ClearCookie();
        window.location.reload();        
    },
    //
    ClearCookie: function() {
        jQuery.cookie(this.cookieName, null, { domain: "imediaconnection.com", path: "/" });
    }
}
