/*
jQuery(document).ready(function() {

jQuery('.mod_picture').mouseover(function() {
jQuery(this).children('.mod_top').css('background-position', 'right');
jQuery(this).children('.mod_center').css('background-position', 'right');
jQuery(this).children('.mod_bottom').css('background-position', 'right');
var tmp = jQuery(this).children('.mod_center');
jQuery(tmp).children('.mod_wrap').children('.mod_title').css('color', 'rgb(175, 54, 0)');
jQuery(tmp).children('.mod_wrap').children('.mod_table').children('tbody').children('tr').children('td').children('a').children('img').css('border-color', 'rgb(255, 255, 255)');
});
jQuery('.mod_picture').mouseout(function() {
jQuery(this).children('.mod_top').css('background-position', 'left');
jQuery(this).children('.mod_center').css('background-position', 'left');
jQuery(this).children('.mod_bottom').css('background-position', 'left');
var tmp = jQuery(this).children('.mod_center');
jQuery(tmp).children('.mod_wrap').children('.mod_title').css('color', 'rgb(51, 51, 51)');
jQuery(tmp).children('.mod_wrap').children('.mod_table').children('tbody').children('tr').children('td').children('a').children('img').css('border-color', 'rgb(229, 226, 201)');
});

});
*/

function showPopup() {
   
    var html = '<div class="overlay-window">';
    html += '<a class="overlay-window-close"></a>';
    html += '<h2>Uwaga nowy numer konta bankowego!</h2>';
    html += '<p class="overlay-center">29 1050 1230 1000 0023 5763 5974</p>';
    html += '<p>SIMAR Sp. z o.o.<br />';
    html += 'ul. Westerplatte 23<br />';
    html += '41-947 Piekary Sląskie</p>';
    html += '</div>';

    jQuery('body').prepend('<div class="overlay"></div>' + html);
    jQuery('.overlay').live('click', closeOverlay);
    jQuery('.overlay-window-close').live('click', closeOverlay);

    jQuery('.overlay-window').css({
        top: (jQuery(window).height() - jQuery('.overlay-window').height()) / 2 + 'px',
        left: (jQuery(document).height() - jQuery('.overlay-window').width()) / 2 + 'px'
    });
}

function closeOverlay() {
    jQuery('.overlay').remove();
    jQuery('.overlay-window').remove();
}
