﻿/// <reference path="jquery/jquery-1.4.1.js" />

var shown = '';

$(document).ready(function () {

    //$("#splashScreen").opacity=0.0;

    $("#splashScreen").animate({ opacity: 1.0 }, "slow");
    $("#splashScreenContent").animate({ opacity: 1.0 }, "slow");


    $('.closeModal').click(function () {
        $("#splashScreen").hide();
        $("#splashScreenContent").hide();
    });

});



