﻿var splashScreen = new IOkno('divLoading', 'ss_bg_iOkno', { top:-200 });

$(document).ready(function () {
    $('a').each(function () {
        if (this.href.indexOf('#') == -1 && this.href.indexOf('void(0)') == -1 && ($(this).attr('splash') == null || ($(this).attr('splash') != null && $(this).attr('splash') == 'true'))) {
            $(this).click(function () {
                splashScreen.Show();
            });
        }
    });

    $('#aSplashScreenStop').click(function () {
        if ($.browser.msie)
            document.execCommand('Stop');
        else
            window.stop();
        splashScreen.Hide();
    });

    $('#' + mainFormId).bind('submit', function () {
        splashScreen.Show();
    });
});
