﻿$(function () {
    $('#RealizaceTable a img').animate({
        "opacity": 1
    });
    $('#RealizaceTable a img').hover(function () {
        $(this).stop().animate({ "opacity": .5 });
    }, function () {
        $(this).stop().animate({ "opacity": 1 });
    });
});

$(function () {
    $('#RealizaceTable a').lightBox();
});


function onUpdating() {
    // get the update progress div
    var updateProgressDiv = $get('updateProgressDiv');
    // make it visible
    updateProgressDiv.style.display = 'inherit';
}

function onUpdated() {
    // get the update progress div
    var updateProgressDiv = $get('updateProgressDiv');
    // make it visible
    updateProgressDiv.style.display = 'none';
}

