
function buton_gorny (buton) {
	$('#b_sklep').attr('src','{$WEB|escape}img/sklep.gif');
	$('#b_prace').attr('src','{$WEB|escape}img/sklep.gif');
	$('#b_ludzie').attr('src','{$WEB|escape}img/sklep.gif');
	$('#b_blog').attr('src','{$WEB|escape}img/sklep.gif');
	$('#b_onas').attr('src','{$WEB|escape}img/sklep.gif');
	$('#b_faq').attr('src','{$WEB|escape}img/sklep.gif');
	
	if (buton == 'sklep'){$('#b_sklep').attr('src','{$WEB|escape}img/sklep_p.gif');}
	else if (buton == 'prace'){$('#b_prace').attr('src','{$WEB|escape}img/prace_p.gif');}
	else if (buton == 'ludzie'){$('#b_ludzie').attr('src','{$WEB|escape}img/ludzie_p.gif');}
	else if (buton == 'blog'){$('#b_blog').attr('src','{$WEB|escape}img/blog_p.gif');}
	else if (buton == 'onas'){$('#b_onas').attr('src','{$WEB|escape}img/onas_p.gif');}
	else if (buton == 'faq'){$('#b_faq').attr('src','{$WEB|escape}img/faq_p.gif');}
}

$(document).ready(
    function (){
    
        $.each($('.error, .flash_message, .flash_error'),function(){
          if ($(this).html()=='') {
            $(this).css('display','none');
          } else {
          
            $(this).remove().appendTo('body');
            $(this).css({
              'top': '427px',
              'left': '442px'
            });
          
            
            var EL = $('<div class="overlay">&nbsp;</div>');
            var X = $('<div style="position:absolute;top:0px;right:0px;width:60px;height:30px;cursor:pointer;"></div>');
            $(this).append(X);
            $('body').append(EL);
            X.click (function () {
              EL.hide(1);
              $(this).parent().hide(1);
            });
          }
        });
        
        /*
        $.each($('.flash_message'),function(){if ($(this).html()==''){$(this).hide(1);} });
        $('.flash_message').append('<div style="position:absolute;top:0px;right:0px;width:60px;height:30px;cursor:pointer;" onclick="$(this).parent().hide(1);"></div>');
        
        $.each($('.flash_error'),function(){if ($(this).html()==''){$(this).hide(1);} });
        $('.flash_error').append('<div style="position:absolute;top:0px;right:0px;width:60px;height:30px;cursor:pointer;" onclick="$(this).parent().hide(1);"></div>');
        */
        $.each($('.flash_password'),function(){if ($(this).html()==''){$(this).hide(1);} });
        //$('.flash_error').append('<div style="position:absolute;top:0px;right:0px;width:60px;height:30px;cursor:pointer;" onclick="$(this).parent().hide(1);$(this).fadeOut(\'fast\');"></div>');
        
    }
);
var koszyk = 0;
function zwijarka(){
    if (koszyk == 0){
        $('#koszyk').slideDown('slow',function(){$('#koszyk').children().fadeIn('slow');});
        koszyk = 1;
    }
    else {
        $('#koszyk').children().fadeOut('fast',function(){$('#koszyk').slideUp(1000);});
        //$('#koszyk').slideUp('slow');
        //$('#koszyk').fadeOut();
        koszyk = 0;
    }
}
