$(document).ready(function() {
    $('.tabs').tabs();


    // Interstitial

        var pattern = new RegExp("\<ins style\=","i");
        var advZoneContent = $("#advZoneContent").html();


        if(pattern.test(advZoneContent)==true)
        {
            $("#advZone").css("display","block");
            //setTimeout('ShutdownAdv()',10500);
        }


})

// Interstitial Shutdown
function ShutdownAdv()
{
    $("#advZone").css("display","none");
}



