﻿/// <reference path="jquery-1.4.1-vsdoc.js" />

/*global $, Sys, window
*/

"use strict";

window.Shiney = { slowGlassLoad: false };

window.setTimeout(function () {
    window.Shiney.slowGlassLoad = true;
}, 500);

$(window).load(function () {
    var glassShineContainer = $("div#glass-shine-container");
    glassShineContainer.height($("div#container").height());

    if (window.Shiney.slowGlassLoad) {
        $("img#glass-shine", glassShineContainer).fadeIn();
    } else {
        $("img#glass-shine", glassShineContainer).show();
    }
});